diff --git a/work/Qlik Batch Files/clean_old_logs.bat b/work/Qlik Batch Files/clean_old_logs.bat new file mode 100644 index 0000000..704590b --- /dev/null +++ b/work/Qlik Batch Files/clean_old_logs.bat @@ -0,0 +1,3 @@ +rem Run this script to delete all the old log files in this directory + +forfiles /s /m *.* /D -60 /C "cmd /c del @path" diff --git a/work/audit_export/aem_client.py b/work/audit_export/aem_client.py new file mode 100644 index 0000000..9190b5a --- /dev/null +++ b/work/audit_export/aem_client.py @@ -0,0 +1,1061 @@ +""" + Copyright 2018 Attunity + Licensed 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. +""" + +# coding: utf-8 +import os, sys, ssl, base64 +from collections import OrderedDict +import json + +use_python_env_3X = sys.version_info > (3,) +if use_python_env_3X: + from urllib.parse import quote + from urllib.request import Request, urlopen + from urllib.error import HTTPError, URLError + base_string_type = str +else: + from urllib2 import Request, urlopen, HTTPError, URLError, quote + base_string_type = basestring + +HEADERS_CONTENT_TYPE = 'Content-Type' +HEADERS_CONTENT_LENGTH = 'Content-Length' + +# import Enum # if 3.4 its supported in python, else use: pip install enum34 +from enum import Enum + + +#region models + +#Enums +class AemTaskStopReason(Enum): + NONE = 0 + NORMAL = 1 + RECOVERABLE_ERROR = 2 + FATAL_ERROR = 3 + FULL_LOAD_ONLY_FINISHED = 4 + STOPPED_AFTER_FULL_LOAD = 5 + STOPPED_AFTER_CACHED_EVENTS = 6 + EXPRESS_LICENSE_LIMITS_REACHED = 7 + STOPPED_AFTER_DDL_APPLY = 8 + STOPPED_LOW_MEMORY = 9 + STOPPED_LOW_DISK_SPACE = 10 + +class AemEndpointState(Enum): + UNKNOWN = 0 + CONNECTED = 1 + ERROR = 2 + +class EndpointRole(Enum): + ALL = 0 + SOURCE = 1 + TARGET = 2 + BOTH = 3 + +class AemLicenseState(Enum): + VALID_LICENSE = 0 + INVALID_LICENSE_CHECKSUM = 1 + EXPIRED_LICENSE = 2 + NO_LICENSE = 3 + MACHINE_NOT_LICENSED = 4 + INVALID_LICENSE = 5 + +class AemServerState(Enum): + NOT_MONITORED = 0 + MONITORED = 1 + ERROR = 2 + +class AemTableState(Enum): + TABLE_QUEUED = 0 + TABLE_LOADING = 1 + TABLE_COMPLETED = 2 + TABLE_CHANGE_PROCESSING = 3 + TABLE_ERROR = 4 + +class AemRunTaskOptions(Enum): + RESUME_PROCESSING = 1 + RELOAD_TARGET = 2 + RESUME_PROCESSING_FROM_TIMESTAMP = 3 + METADATA_ONLY_RECREATE_ALL_TABLES = 4 + METADATA_ONLY_CREATE_MISSING_TABLES = 5 + RECOVER_USING_LOCALLY_STORED_CHECKPOINT = 6 + RECOVER_USING_CHECKPOINT_STORED_ON_TARGET = 7 + +class AemTaskState(Enum): + NOT_EXIST = 0 + RUNNING = 1 + ERROR = 2 + STOPPED = 3 + PAUSED = 4 + RECOVERY = 5 + STARTING = 6 + STOPPING = 7 + +class AemPlatform(Enum): + UNKNOWN = 0 + WINDOWS = 1 + LINUX = 2 + +class ServerType(Enum): + REPLICATE = 1 + COMPOSE_FDL = 3 + COMPOSE = 4 + COMPOSE_FDW = 5 + +#Base classes +class AemServer(object): + def __init__(self, j = None): + if not j: + self.name = None + self.description = None + self.host = None + self.port = None + self.username = None + self.password = None + self.monitored = True + self.verify_server_certificate = False + self.type = ServerType.REPLICATE + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.type = ServerType[self.type] + +#class AemComposeTaskInfoDetailed(AemTaskInfoDetailedBase): +# def __init__(self, j = None): +# AemTaskInfoDetailedBase.__init__(self, j) + +class AemServerInfo(object): + def __init__(self, j = None): + if not j: + self.name = None + self.description = None + self.host = None + self.port = None + self.state = AemServerState.NOT_MONITORED + self.message = None + self.platform = AemPlatform.UNKNOWN + self.version = None + self.last_connection = None + self.type = ServerType.REPLICATE + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.state = AemServerState[self.state] + self.platform = AemPlatform[self.platform] + self.type = ServerType[self.type] + +class AemTaskInfoDetailedBase(object): + def __init__(self, j = None): + if not j: + self.name = None + self.state = AemTaskState.NOT_EXIST + self.description = None + self.source_endpoint = None + self.target_endpoint = None + self.assigned_tags = [] + self.message = None + self.profile = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.state = AemTaskState[self.state] + self.source_endpoint = TaskEndpoint(self.source_endpoint) + self.target_endpoint = TaskEndpoint(self.target_endpoint) + +class AemComposeTaskInfoDetailed(AemTaskInfoDetailedBase): + def __init__(self, j = None): + AemTaskInfoDetailedBase.__init__(self, j) + +class AemServerDetails(object): + def __init__(self, j = None): + if not j: + self.name = None + self.description = None + self.configuration = None + self.state = AemServerState.NOT_MONITORED + self.message = None + self.version = None + self.license = None + self.last_connection = None + self.task_summary = None + self.resource_utilization = None + self.type = ServerType.REPLICATE + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.configuration = Configuration(self.configuration) + self.state = AemServerState[self.state] + self.license = ApiLicense(self.license) + self.task_summary = AemTasksSummary(self.task_summary) + self.resource_utilization = AemServerUtilization(self.resource_utilization) + self.type = ServerType[self.type] + +#child classes +class AemTaskInfoDetailed(AemTaskInfoDetailedBase): + def __init__(self, j = None): + AemTaskInfoDetailedBase.__init__(self, j) + +class ReplicateServerInfo(AemServerInfo): + def __init__(self, j = None): + AemServerInfo.__init__(self, j) + +class AemComposeDMTaskInfoDetailed(AemComposeTaskInfoDetailed): + def __init__(self, j = None): + AemComposeTaskInfoDetailed.__init__(self, j) + +class AemComposeServer(AemServer): + def __init__(self, j = None): + AemServer.__init__(self, j) + +class AemReplicateServer(AemServer): + def __init__(self, j = None): + AemServer.__init__(self, j) + +class ComposeServerDetails(AemServerDetails): + def __init__(self, j = None): + AemServerDetails.__init__(self, j) + +class ReplicateServerDetails(AemServerDetails): + def __init__(self, j = None): + AemServerDetails.__init__(self, j) + +class ComposeServerInfo(AemServerInfo): + def __init__(self, j = None): + AemServerInfo.__init__(self, j) + +class AemComposeDWTaskInfoDetailed(AemComposeTaskInfoDetailed): + def __init__(self, j = None): + AemComposeTaskInfoDetailed.__init__(self, j) + +class AemComposeDLTaskInfoDetailed(AemComposeTaskInfoDetailed): + def __init__(self, j = None): + AemComposeTaskInfoDetailed.__init__(self, j) + +#simple classes +class AemAuthorizationAcl(object): + def __init__(self, j = None): + if not j: + self.admin_role = None + self.designer_role = None + self.operator_role = None + self.viewer_role = None + self.disable_inheritance = False + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.admin_role = AemRoleDef(self.admin_role) + self.designer_role = AemRoleDef(self.designer_role) + self.operator_role = AemRoleDef(self.operator_role) + self.viewer_role = AemRoleDef(self.viewer_role) + +class AemGetTableStatusesResp(object): + def __init__(self, j = None): + if not j: + self.table_details = [] + else: + self.__dict__ = AttUtil.attobject_from_json(j) + for i, k in enumerate(self.table_details): + self.table_details[i] = AemTableDetails(self.table_details[i]) + +class AemGetTaskListResp(object): + def __init__(self, j = None): + if not j: + self.taskList = [] + else: + self.__dict__ = AttUtil.attobject_from_json(j) + for i, k in enumerate(self.taskList): + self.taskList[i] = AemTaskInfo(self.taskList[i]) + +class AemSetChangeDataRetentionBarrierReq(object): + def __init__(self, j = None): + if not j: + self.application = None + self.retention_point = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class AemGetServerListResp(object): + def __init__(self, j = None): + if not j: + self.serverList = [] + else: + self.__dict__ = AttUtil.attobject_from_json(j) + for i, k in enumerate(self.serverList): + if self.serverList[i]['$type'] == 'ReplicateServerInfo': + self.serverList[i] = ReplicateServerInfo(self.serverList[i]) + continue + if self.serverList[i]['$type'] == 'ComposeServerInfo': + self.serverList[i] = ComposeServerInfo(self.serverList[i]) + continue + +class AemTaskInfo(object): + def __init__(self, j = None): + if not j: + self.name = None + self.state = AemTaskState.STOPPED + self.stop_reason = AemTaskStopReason.NORMAL + self.message = None + self.assigned_tags = [] + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.state = AemTaskState[self.state] + self.stop_reason = AemTaskStopReason[self.stop_reason] + +class AemTableDetails(object): + def __init__(self, j = None): + if not j: + self.schema_on_source = None + self.table_on_source = None + self.schema_on_target = None + self.table_on_target = None + self.state = AemTableState.TABLE_QUEUED + self.data_errors_count = 0 + self.table_full_load_info = None + self.table_cdc_info = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.state = AemTableState[self.state] + self.table_full_load_info = AemTableFullLoadInfo(self.table_full_load_info) + self.table_cdc_info = AemTableCdcInfo(self.table_cdc_info) + +class AemTableFullLoadInfo(object): + def __init__(self, j = None): + if not j: + self.start_time = None + self.end_time = None + self.estimated_row_count = 0 + self.estimated_end_time = None + self.transferred_row_count = 0 + self.transferred_volume_mb = 0 + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class AemGetTableListResp(object): + def __init__(self, j = None): + if not j: + self.tablelist = [] + else: + self.__dict__ = AttUtil.attobject_from_json(j) + for i, k in enumerate(self.tablelist): + self.tablelist[i] = AemTableInfo(self.tablelist[i]) + +class AemDeleteOldChangeDataReq(object): + def __init__(self, j = None): + if not j: + self.timestamp_or_offset = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class AemGroupRef(object): + def __init__(self, j = None): + if not j: + self.name = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class Endpoint(object): + def __init__(self, j = None): + if not j: + self.name = None + self.description = None + self.role = EndpointRole.ALL + self.type = None + self.is_licensed = False + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.role = EndpointRole[self.role] + +class AemGetEndpointListResp(object): + def __init__(self, j = None): + if not j: + self.endpointList = [] + else: + self.__dict__ = AttUtil.attobject_from_json(j) + for i, k in enumerate(self.endpointList): + self.endpointList[i] = Endpoint(self.endpointList[i]) + +class AemServerUtilization(object): + def __init__(self, j = None): + if not j: + self.disk_usage_mb = 0 + self.memory_mb = 0 + self.attunity_cpu_percentage = 0 + self.machine_cpu_percentage = 0 + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class AemGetChangeDataRetentionBarrierResp(object): + def __init__(self, j = None): + if not j: + self.application = None + self.retention_point = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class AemGetServerDetailsResp(object): + def __init__(self, j = None): + if not j: + self.server_details = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + if self.server_details['$type'] == 'ReplicateServerDetails': + self.server_details = ReplicateServerDetails(self.server_details) + elif self.server_details['$type'] == 'ComposeServerDetails': + self.server_details = ComposeServerDetails(self.server_details) + +class AemRoleDef(object): + def __init__(self, j = None): + if not j: + self.users = [] + self.groups = [] + else: + self.__dict__ = AttUtil.attobject_from_json(j) + for i, k in enumerate(self.users): + self.users[i] = AemUserRef(self.users[i]) + for i, k in enumerate(self.groups): + self.groups[i] = AemGroupRef(self.groups[i]) + +class AemRunTaskReq(object): + def __init__(self, j = None): + if not j: + self.cdcposition = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class AemStopTaskResp(object): + def __init__(self, j = None): + if not j: + self.state = AemTaskState.NOT_EXIST + self.error_message = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.state = AemTaskState[self.state] + +class AemTasksSummary(object): + def __init__(self, j = None): + if not j: + self.total = 0 + self.running = 0 + self.stopped = 0 + self.recovering = 0 + self.error = 0 + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class TaskEndpoint(object): + def __init__(self, j = None): + if not j: + self.name = None + self.type = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class AemTableCdcInfo(object): + def __init__(self, j = None): + if not j: + self.insert_count = 0 + self.update_count = 0 + self.delete_count = 0 + self.ddl_count = 0 + self.last_update_time = None + self.cached_insert_count = 0 + self.cached_update_count = 0 + self.cached_delete_count = 0 + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class AemRunTaskResp(object): + def __init__(self, j = None): + if not j: + self.state = AemTaskState.NOT_EXIST + self.error_message = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.state = AemTaskState[self.state] + +class AemUserRef(object): + def __init__(self, j = None): + if not j: + self.name = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class AemTableInfo(object): + def __init__(self, j = None): + if not j: + self.schema = None + self.table = None + self.state = AemTableState.TABLE_QUEUED + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.state = AemTableState[self.state] + +class AemTestEndpointResp(object): + def __init__(self, j = None): + if not j: + self.status = AemEndpointState.UNKNOWN + self.message = None + self.detailed_message = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.status = AemEndpointState[self.status] + +class ApiLicense(object): + def __init__(self, j = None): + if not j: + self.issue_date = None + self.state = AemLicenseState.VALID_LICENSE + self.expiration = None + self.days_to_expiration = 0 + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.state = AemLicenseState[self.state] + +class Configuration(object): + def __init__(self, j = None): + if not j: + self.host = None + self.platform = AemPlatform.UNKNOWN + self.port = None + self.user_name = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.platform = AemPlatform[self.platform] + + +#endregion models + +#region utils + +class AuthenticationMethod(Enum): + ACTIVE_DIRECTORY = 0 + SAML = 1 + +class AttUtil(object): + @staticmethod + def quote_param(url_param): + if isinstance(url_param, Enum): + url_param = url_param.name + url_param = str(url_param).encode('utf-8') + url_param = quote(quote(url_param)) + return url_param + # END function AttUtil.quote_param + + @staticmethod + def attobject_from_json(obj): + base_obj = obj + if type(obj) is dict: + return base_obj + try: + if isinstance(obj, base_string_type) or isinstance(obj, str) or isinstance(obj.decode('utf-8'), str): + base_obj = json.loads(obj) + except Exception as ex: + print(ex) + return base_obj + # END function AttUtil.attobject_from_json + + @staticmethod + def attobject_to_json(obj): + if isinstance(obj, Enum): + return obj.name + elif (obj is None or (type(obj) is str) or (type(obj) is int) or (type(obj) is bool) or (type(obj) is bytes) or isinstance(obj, base_string_type) or (str(type(obj)) == "") ): + return obj + elif ( (type(obj) is list) or isinstance(obj, list) ): + arr = [] + for item in obj: + arr.append( AttUtil.attobject_to_json(item)) + return arr + elif ( (type(obj) is dict) or (obj.__dict__ != None) ): + # keep the object Type + obj_type = obj.__class__.__name__ + sorted_dict = OrderedDict() + # set $type as first + sorted_dict['$type'] = obj_type + for key in obj.__dict__: + sorted_dict[key] = AttUtil.attobject_to_json(obj.__dict__[key]) + return sorted_dict + else: + return obj + # END function AttUtil.attobject_to_json + + @staticmethod + def validate_params(param_dict): + for key in param_dict: + item = param_dict[key] + if not isinstance(item["value"], item["type"]): + raise Exception('Param: "{0}" should be of type: "{1}", but was: "{2}"'.format(key, item["type"], type(item["value"]) ) ) + # END function AttUtil.validate_params + + @staticmethod + def get_b64_user_pass(username, password): + username_pass_tpl = str.encode('{0}:{1}'.format(username, password)) + return base64.b64encode(username_pass_tpl).decode('ascii') + # END function AttUtil.get_b64_user_pass +# END class AttUtil + +class AemClientException(Exception): + def __init__(self, error_code, error_message): + self.error_code = error_code + self.message = error_message + Exception.__init__(self, error_code, error_message) + +class AttConnector(object): + def __init__(self, b64_username_password, verify_certificate=True, authentication_method=AuthenticationMethod.ACTIVE_DIRECTORY): + self.verify_certificate = verify_certificate + if authentication_method == AuthenticationMethod.ACTIVE_DIRECTORY: + self.headers = { 'Authorization' : 'Basic %s' % b64_username_password } + else: + self.headers = dict() + if verify_certificate: + ssl._create_default_https_context = ssl.create_default_context + else: + ssl._create_default_https_context = ssl._create_unverified_context + + def att_request(self, method, url, payload=None, get_raw_error=False, content_type='application/json'): + req_headers = {} + for key in self.headers: + req_headers[key] = self.headers[key] + req_headers[HEADERS_CONTENT_TYPE] = content_type + if payload: + payload = payload.encode('utf-8') + req_headers[HEADERS_CONTENT_LENGTH] = str(len(payload)) + elif HEADERS_CONTENT_LENGTH in req_headers: + del req_headers[HEADERS_CONTENT_LENGTH] + att_response = {} + request_pyx = Request(url, data=payload, headers=req_headers) + request_pyx.get_method = lambda: method + try: + att_response = urlopen(request_pyx) + except HTTPError as ex: + if get_raw_error: + att_response = ex + else: + # TODO: G.G. - remove read, and adjust calls and errors + att_response = ex.read() + except URLError as ex: + att_response = ex + except Exception as ex: + att_response = ex + return att_response + # end of att_request + def save_headers(self, response): + headers_dict = {} + try: + resp_info = response.info() + for key in resp_info: + if key != HEADERS_CONTENT_LENGTH: + headers_dict[key] = response.headers[key] + except Exception as ex: + print(ex) + self.headers = headers_dict + # end of save_headers +# END of class AttConnector + +#endregion utils + +#region infrastructure + +class AttClient(object): + def __init__(self, b64_username_password, url="", verify_certificate=True, authentication_method=AuthenticationMethod.ACTIVE_DIRECTORY): + if 'https' not in url: + raise Exception('The Aem access URL must start with "https".') + if not isinstance(authentication_method, AuthenticationMethod): + raise Exception('authentication_method must be of type AuthenticationMethod') + self.url = url + self.attconnector = AttConnector(b64_username_password, verify_certificate, authentication_method) + login_url = '{0}/api/v1/login'.format(self.url) + if authentication_method == AuthenticationMethod.ACTIVE_DIRECTORY: + saml_message = None + else: + saml_message = b64_username_password + response = self.attconnector.att_request(method='POST', url=login_url, payload=saml_message, get_raw_error=True, content_type='application/x-www-form-urlencoded') + if hasattr(response, 'code') and response.code == 200: + self.attconnector.save_headers(response) + else: + self.attconnector = None + if hasattr(response, 'reason') and response.reason: + raise Exception("Http Error: {0}".format(response.reason)) + else: + resp_json = json.loads(response) + raise AemClientException(resp_json['error_code'], resp_json['error_message']) + # END function __init__ + + def do_web_request(self, resp_class=None, address=None, http_method='GET', req = None, stream_req = False): + full_url = '{0}/{1}'.format(self.url, address) + payload = None + if req: + if stream_req: + payload = req + else: + att_json = AttUtil.attobject_to_json(req) + payload = json.dumps( att_json, sort_keys=True ) + response_t = self.attconnector.att_request(method=http_method, url=full_url, payload=payload) + response_text = None + try: + response_text = response_t.read() + except Exception as ex: + if hasattr(response_t, 'reason') and response_t.reason: + raise Exception('Http Error: {0}'.format(response_t.reason)) + else: + response_t = json.loads(response_t) + if 'error_code' in response_t or 'status_code' in response_t: + raise AemClientException(response_t['error_code'], response_t['error_message']) + if resp_class: + return resp_class(response_text) + return response_text + # END function do_web_request + +#endregion infrastructure + + +class AemClient(AttClient): + def __init__(self, b64_username_password, machine_name, port=443, url="https://{0}/attunityenterprisemanager", verify_certificate=True, authentication_method=AuthenticationMethod.ACTIVE_DIRECTORY): + if port != 443: + machine_name = '{0}:{1}'.format(machine_name, port) + if url.find('{0}'): + url = url.format(machine_name) + self.attclient = AttClient(b64_username_password, url, verify_certificate, authentication_method) + def delete_endpoint(self, server, endpoint): + """ + parameters: + server - string + endpoint - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'endpoint':{'value':endpoint,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/endpoints/" + AttUtil.quote_param(endpoint) + "?action=delete" + self.attclient.do_web_request(None, address, 'POST', None) + + def delete_old_change_data(self, payload, server, task): + """ + request payload: AemDeleteOldChangeDataReq + parameters: + server - string + task - string + """ + AttUtil.validate_params({ 'payload':{'value':payload,'type':AemDeleteOldChangeDataReq }, 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "?action=delete_old_change_data" + self.attclient.do_web_request(None, address, 'POST', payload) + + def delete_server_acl(self, server): + """ + parameters: + server - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "?action=acl" + self.attclient.do_web_request(None, address, 'DELETE', None) + + def delete_server(self, server): + """ + parameters: + server - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/def" + self.attclient.do_web_request(None, address, 'DELETE', None) + + def delete_task(self, server, task, deletetasklogs = False): + """ + parameters: + server - string + task - string + deletetasklogs - bool + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type }, 'deletetasklogs':{'value':deletetasklogs,'type':bool } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "?action=delete&deletetasklogs=" + AttUtil.quote_param(deletetasklogs) + "" + self.attclient.do_web_request(None, address, 'POST', None) + + def export_all(self, server): + """ + response payload: STREAM + parameters: + server - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "?action=export" + resp = self.attclient.do_web_request(None, address, 'GET', None) + return resp + + def export_audit_trail(self, start_timestamp = None, end_timestamp = None): + """ + response payload: STREAM + parameters: + start_timestamp - string + end_timestamp - string + """ + AttUtil.validate_params({ 'start_timestamp':{'value':start_timestamp,'type':base_string_type }, 'end_timestamp':{'value':end_timestamp,'type':base_string_type } }) + address = "api/v1/security/audit_trail?start_timestamp=" + AttUtil.quote_param(start_timestamp) + "&end_timestamp=" + AttUtil.quote_param(end_timestamp) + "" + resp = self.attclient.do_web_request(None, address, 'GET', None) + return resp + + def export_task(self, server, task, withendpoints = False): + """ + response payload: STREAM + parameters: + server - string + task - string + withendpoints - bool + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type }, 'withendpoints':{'value':withendpoints,'type':bool } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "?action=export&withendpoints=" + AttUtil.quote_param(withendpoints) + "" + resp = self.attclient.do_web_request(None, address, 'GET', None) + return resp + + def get_change_data_retention_barrier(self, server, task): + """ + response payload: AemGetChangeDataRetentionBarrierResp + parameters: + server - string + task - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "?action=get_change_data_retention_barrier" + resp = self.attclient.do_web_request(AemGetChangeDataRetentionBarrierResp, address, 'GET', None) + return resp + + def get_endpoint_list(self, server): + """ + response payload: AemGetEndpointListResp + parameters: + server - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/endpoints" + resp = self.attclient.do_web_request(AemGetEndpointListResp, address, 'GET', None) + return resp + + def get_server_acl(self, server): + """ + response payload: AemAuthorizationAcl + parameters: + server - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "?action=acl" + resp = self.attclient.do_web_request(AemAuthorizationAcl, address, 'GET', None) + return resp + + def get_server_details(self, server): + """ + response payload: AemGetServerDetailsResp + parameters: + server - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "" + resp = self.attclient.do_web_request(AemGetServerDetailsResp, address, 'GET', None) + return resp + + def get_server_list(self, ): + """ + response payload: AemGetServerListResp + parameters: + """ + address = "api/v1/servers" + resp = self.attclient.do_web_request(AemGetServerListResp, address, 'GET', None) + return resp + + def get_server(self, server): + """ + response payload: AemServer + parameters: + server - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/def" + resp = self.attclient.do_web_request(AemServer, address, 'GET', None) + return resp + + def get_table_list(self, server, task, schema = None, table = None, includequeued = False, includeloading = False, includecompleted = False, includechangeprocessing = False, includeerror = False): + """ + response payload: AemGetTableListResp + parameters: + server - string + task - string + schema - string + table - string + includequeued - bool + includeloading - bool + includecompleted - bool + includechangeprocessing - bool + includeerror - bool + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type }, 'schema':{'value':schema,'type':base_string_type }, 'table':{'value':table,'type':base_string_type }, 'includequeued':{'value':includequeued,'type':bool }, 'includeloading':{'value':includeloading,'type':bool }, 'includecompleted':{'value':includecompleted,'type':bool }, 'includechangeprocessing':{'value':includechangeprocessing,'type':bool }, 'includeerror':{'value':includeerror,'type':bool } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "/tables?schema=" + AttUtil.quote_param(schema) + "&table=" + AttUtil.quote_param(table) + "&includequeued=" + AttUtil.quote_param(includequeued) + "&includeloading=" + AttUtil.quote_param(includeloading) + "&includecompleted=" + AttUtil.quote_param(includecompleted) + "&includechangeprocessing=" + AttUtil.quote_param(includechangeprocessing) + "&includeerror=" + AttUtil.quote_param(includeerror) + "" + resp = self.attclient.do_web_request(AemGetTableListResp, address, 'GET', None) + return resp + + def get_table_statuses(self, server, task, schema = None, table = None, includequeued = False, includeloading = False, includecompleted = False, includechangeprocessing = False, includeerror = False): + """ + response payload: AemGetTableStatusesResp + parameters: + server - string + task - string + schema - string + table - string + includequeued - bool + includeloading - bool + includecompleted - bool + includechangeprocessing - bool + includeerror - bool + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type }, 'schema':{'value':schema,'type':base_string_type }, 'table':{'value':table,'type':base_string_type }, 'includequeued':{'value':includequeued,'type':bool }, 'includeloading':{'value':includeloading,'type':bool }, 'includecompleted':{'value':includecompleted,'type':bool }, 'includechangeprocessing':{'value':includechangeprocessing,'type':bool }, 'includeerror':{'value':includeerror,'type':bool } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "/tables?action=getstatus&schema=" + AttUtil.quote_param(schema) + "&table=" + AttUtil.quote_param(table) + "&includequeued=" + AttUtil.quote_param(includequeued) + "&includeloading=" + AttUtil.quote_param(includeloading) + "&includecompleted=" + AttUtil.quote_param(includecompleted) + "&includechangeprocessing=" + AttUtil.quote_param(includechangeprocessing) + "&includeerror=" + AttUtil.quote_param(includeerror) + "" + resp = self.attclient.do_web_request(AemGetTableStatusesResp, address, 'GET', None) + return resp + + def get_task_details(self, server, task): + """ + response payload: AemTaskInfoDetailedBase + parameters: + server - string + task - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "" + resp = self.attclient.do_web_request(AemTaskInfoDetailedBase, address, 'GET', None) + return resp + + def get_task_list(self, server): + """ + response payload: AemGetTaskListResp + parameters: + server - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks" + resp = self.attclient.do_web_request(AemGetTaskListResp, address, 'GET', None) + return resp + + def import_all(self, payload, server): + """ + request payload: STREAM + parameters: + server - string + """ + AttUtil.validate_params({ 'payload':{'value':payload,'type':base_string_type }, 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "?action=import" + self.attclient.do_web_request(None, address, 'POST', payload, True) + + def import_task(self, payload, server, task): + """ + request payload: STREAM + parameters: + server - string + task - string + """ + AttUtil.validate_params({ 'payload':{'value':payload,'type':base_string_type }, 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "?action=import" + self.attclient.do_web_request(None, address, 'POST', payload, True) + + def put_server_acl(self, payload, server): + """ + request payload: AemAuthorizationAcl + parameters: + server - string + """ + AttUtil.validate_params({ 'payload':{'value':payload,'type':AemAuthorizationAcl }, 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "?action=acl" + self.attclient.do_web_request(None, address, 'PUT', payload) + + def put_server_license(self, payload, server): + """ + request payload: STREAM + parameters: + server - string + """ + AttUtil.validate_params({ 'payload':{'value':payload,'type':base_string_type }, 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/license/def" + self.attclient.do_web_request(None, address, 'PUT', payload, True) + + def put_server(self, payload, server): + """ + request payload: AemServer + parameters: + server - string + """ + AttUtil.validate_params({ 'payload':{'value':payload,'type':AemServer }, 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/def" + self.attclient.do_web_request(None, address, 'PUT', payload) + + def reconfigure_endpoint_no_wait(self, server, endpoint, configuration = None, recycle = True): + """ + parameters: + server - string + endpoint - string + configuration - string + recycle - bool + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'endpoint':{'value':endpoint,'type':base_string_type }, 'configuration':{'value':configuration,'type':base_string_type }, 'recycle':{'value':recycle,'type':bool } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/endpoints/" + AttUtil.quote_param(endpoint) + "?action=reconfigure&configuration=" + AttUtil.quote_param(configuration) + "&recycle=" + AttUtil.quote_param(recycle) + "" + self.attclient.do_web_request(None, address, 'PUT', None) + + def reload_table(self, server, task, schema = None, table = None): + """ + parameters: + server - string + task - string + schema - string + table - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type }, 'schema':{'value':schema,'type':base_string_type }, 'table':{'value':table,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "/tables?action=reload&schema=" + AttUtil.quote_param(schema) + "&table=" + AttUtil.quote_param(table) + "" + self.attclient.do_web_request(None, address, 'POST', None) + + def run_task(self, payload, server, task, option = AemRunTaskOptions.RESUME_PROCESSING, timeout = 60): + """ + request payload: AemRunTaskReq + response payload: AemRunTaskResp + parameters: + server - string + task - string + option - AemRunTaskOptions + timeout - int32 + """ + AttUtil.validate_params({ 'payload':{'value':payload,'type':AemRunTaskReq }, 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type }, 'option':{'value':option,'type':AemRunTaskOptions }, 'timeout':{'value':timeout,'type':int } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "?action=run&option=" + AttUtil.quote_param(option) + "&timeout=" + AttUtil.quote_param(timeout) + "" + resp = self.attclient.do_web_request(AemRunTaskResp, address, 'POST', payload) + return resp + + def set_change_data_retention_barrier(self, payload, server, task): + """ + request payload: AemSetChangeDataRetentionBarrierReq + parameters: + server - string + task - string + """ + AttUtil.validate_params({ 'payload':{'value':payload,'type':AemSetChangeDataRetentionBarrierReq }, 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "?action=set_change_data_retention_barrier" + self.attclient.do_web_request(None, address, 'PUT', payload) + + def stop_task(self, server, task, timeout = 30): + """ + response payload: AemStopTaskResp + parameters: + server - string + task - string + timeout - int32 + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type }, 'timeout':{'value':timeout,'type':int } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "?action=stop&timeout=" + AttUtil.quote_param(timeout) + "" + resp = self.attclient.do_web_request(AemStopTaskResp, address, 'POST', None) + return resp + + def test_endpoint(self, server, endpoint, timeout = 60): + """ + response payload: AemTestEndpointResp + parameters: + server - string + endpoint - string + timeout - int32 + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'endpoint':{'value':endpoint,'type':base_string_type }, 'timeout':{'value':timeout,'type':int } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/endpoints/" + AttUtil.quote_param(endpoint) + "?action=test&timeout=" + AttUtil.quote_param(timeout) + "" + resp = self.attclient.do_web_request(AemTestEndpointResp, address, 'GET', None) + return resp + diff --git a/work/audit_export/audit_check.py b/work/audit_export/audit_check.py new file mode 100644 index 0000000..bfd1c0d --- /dev/null +++ b/work/audit_export/audit_check.py @@ -0,0 +1,177 @@ +""" +Copyright 2018 Attunity +Licensed 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. +""" + +# coding: utf-8 +import os, sys, time, datetime, json, subprocess +from collections import OrderedDict +from datetime import timezone + +# import AEM-Client +from aem_client import * + +if sys.version_info > (3,): + print('Using environment Python 3.X\n') +else: + print('Using environment Python 2.X\n') + +# Utility class for Examples +class Utils(object): + @staticmethod + def dollar_type(obj): + """ + get attribute '$type' + """ + return getattr(obj, '$type') + # Utils.dollar_type + + @staticmethod + def enum_name(enum_val): + return enum_val.name + # Utils.enum_name + + @staticmethod + def print_action_title(action_text): + print('\n############################################################') + print('\n{0}\n'.format(str(action_text) ) ) + # Utils.print_action_title + + @staticmethod + def print_action_title_without_separator(action_text): + print('\n{0}\n'.format(str(action_text) ) ) + # Utils.print_action_title_without_separator + + @staticmethod + def time_sleep(duration=3, show_msg=True): + """ + sleep for duration (in seconds) + """ + if show_msg: + print('Sleeping for: {0} seconds'.format(duration)) + time.sleep(duration) + # Utils.time_sleep + + @staticmethod + def get_b64_user_pass(username, password): + """ + return a base64 of 'username:password' + """ + username_password_str = str.encode('{0}:{1}'.format(username, password)) + return base64.b64encode(username_password_str).decode('ascii') + # Utils.get_b64_user_pass + + @staticmethod + def changed_initial(current_value, predefine_value, param_name): + if current_value == predefine_value: + raise RuntimeError('Please replace param: "{0}", value:"{1}", to the real value.'.format(param_name, predefine_value ) ) + # Utils.changed_initial + + @staticmethod + def print_dict_attr(obj, attr_name): + for key in obj.__dict__: + item = obj.__dict__[key] + if hasattr(item, attr_name): + inner_list = getattr(item,attr_name) + for inner_item in inner_list: + print('\t{0}:\t{1}'.format(inner_item.name, key)) + # Utils.print_dict_attr +# END of class Util + +class PythonProgram(object): + def __init__(self, ): + """ + ### you can use the environment for username and password + #Get user_name and password from environment + username = os.getenv("AEM_USERNAME", default=None) + print('AEM_USERNAME = ' + env_username) + password = os.getenv("AEM_PASSWORD", default=None) + print('AEM_PASSWORD = ' + env_password) + """ + + ### Information for connecting to AEM (replace placeholders with actual connection details) + domain = 'LM' + username = 'sapipqlikadmin' + password = base64.b64decode(b'OVdnJDQ4JGJCYmUkbjI===').decode('utf-8') + aem_machine_name = 'vmpip-q525jzty.lm.lmig.com' + + Utils.changed_initial(domain, 'DOMAIN', 'domain') + Utils.changed_initial(username, 'USER', 'username') + Utils.changed_initial(password, 'PASSWORD', 'password') + Utils.changed_initial(aem_machine_name, 'some-host', 'aem_machine_name') + # Combine domain and user name - domain\\username + domain_username = '{0}\\{1}'.format(domain, username) + + print('Connecting to AemClient with user "{0}" on machine name: "{1}"...'.format(domain_username, aem_machine_name)) + try: + # The format of credentials AemClient must get is domain\\username:password base64 encoded + b64_username_password = Utils.get_b64_user_pass(domain_username, password) + # Create an instance of AemClient + self.aem_client = AemClient(b64_username_password, aem_machine_name, verify_certificate=False) + print('Done.') + print('\n############################################################') + except Exception as ex: + print('Failed connecting to AemClient') + print(ex) + self.aem_client = None + # end function __init__ for ExamplePythonProgram + + def get_audit_details(self, starttime, endtime): + try: + resp = self.aem_client.export_audit_trail(starttime, endtime) + return resp + except Exception as ex: + print('Error aem_export_audit_details') + print(ex) + return None + # end function get_task_details + +# END class PythonProgram + + +################################# +# example_main # +################################# +def main(): + + # setup_aem_client + program = PythonProgram() + if program.aem_client == None: + print('Error: in aem_client,\nExiting.') + exit() + + past24hours = 864000000000 + p = subprocess.Popen(["powershell", "./getCurrentTicks.ps1"], stdout=subprocess.PIPE) + result = p.communicate() + endticks = "%s" % result[0].decode("utf-8").rstrip().replace("'","") + endticks = int(endticks) + startticks = endticks - past24hours + + Utils.print_action_title_without_separator('Retrieving audit details......') + + audit_data = program.get_audit_details(str(startticks), str(endticks)) + audit_info = open('audit_data.log', 'bw') + audit_info.write(audit_data) + audit_info.close() + audit_info = open('audit_data.log', 'br') + for line in audit_info: + print(line.decode('utf-8')) + audit_info.close() + print('\nDONE.') + +### END of function MAIN_USE +############################################################## + + +if __name__ == '__main__': + main() diff --git a/work/audit_export/audit_check.py.linux b/work/audit_export/audit_check.py.linux new file mode 100644 index 0000000..fca6a0f --- /dev/null +++ b/work/audit_export/audit_check.py.linux @@ -0,0 +1,217 @@ +""" +Copyright 2018 Attunity +Licensed 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. +""" + +# coding: utf-8 +import os, sys, time, subprocess, psycopg2 +from psycopg2 import errors + +# import AEM-Client +from aem_client import * + +if sys.version_info > (3,): + print('Using environment Python 3.X\n') +else: + print('Using environment Python 2.X\n') + +# Utility class for Examples +class Utils(object): + @staticmethod + def dollar_type(obj): + """ + get attribute '$type' + """ + return getattr(obj, '$type') + # Utils.dollar_type + + @staticmethod + def enum_name(enum_val): + return enum_val.name + # Utils.enum_name + + @staticmethod + def print_action_title(action_text): + print('\n############################################################') + print('\n{0}\n'.format(str(action_text) ) ) + # Utils.print_action_title + + @staticmethod + def print_action_title_without_separator(action_text): + print('\n{0}\n'.format(str(action_text) ) ) + # Utils.print_action_title_without_separator + + @staticmethod + def time_sleep(duration=3, show_msg=True): + """ + sleep for duration (in seconds) + """ + if show_msg: + print('Sleeping for: {0} seconds'.format(duration)) + time.sleep(duration) + # Utils.time_sleep + + @staticmethod + def get_b64_user_pass(username, password): + """ + return a base64 of 'username:password' + """ + username_password_str = str.encode('{0}:{1}'.format(username, password)) + return base64.b64encode(username_password_str).decode('ascii') + # Utils.get_b64_user_pass + + @staticmethod + def changed_initial(current_value, predefine_value, param_name): + if current_value == predefine_value: + raise Exception('Please replace param: "{0}", value:"{1}", to the real value.'.format(param_name, predefine_value ) ) + # Utils.changed_initial + + @staticmethod + def print_dict_attr(obj, attr_name): + for key in obj.__dict__: + item = obj.__dict__[key] + if hasattr(item, attr_name): + inner_list = getattr(item,attr_name) + for inner_item in inner_list: + print('\t{0}:\t{1}'.format(inner_item.name, key)) + # Utils.print_dict_attr +# END of class Util + +class PythonProgram(object): + def __init__(self, ): + """ + ### you can use the environment for username and password + #Get user_name and password from environment + username = os.getenv("AEM_USERNAME", default=None) + print('AEM_USERNAME = ' + env_username) + password = os.getenv("AEM_PASSWORD", default=None) + print('AEM_PASSWORD = ' + env_password) + """ + + ### Information for connecting to AEM (replace placeholders with actual connection details) + domain = 'LM' + username = 'sapipqlikadmin' + password = base64.b64decode(b'OVdnJDQ4JGJCYmUkbjI===').decode('utf-8') + aem_machine_name = 'vmpip-q525jzty.lm.lmig.com' + + Utils.changed_initial(domain, 'DOMAIN', 'domain') + Utils.changed_initial(username, 'USER', 'username') + Utils.changed_initial(password, 'PASSWORD', 'password') + Utils.changed_initial(aem_machine_name, 'some-host', 'aem_machine_name') + # Combine domain and user name - domain\\username + domain_username = '{0}\\{1}'.format(domain, username) + + print('Connecting to AemClient with user "{0}" on machine name: "{1}"...'.format(domain_username, aem_machine_name)) + try: + # The format of credentials AemClient must get is domain\\username:password base64 encoded + b64_username_password = Utils.get_b64_user_pass(domain_username, password) + # Create an instance of AemClient + self.aem_client = AemClient(b64_username_password, aem_machine_name, verify_certificate=False) + print('Done.') + print('\n############################################################') + except Exception as ex: + print('Failed connecting to AemClient') + print(ex) + self.aem_client = None + # end function __init__ for ExamplePythonProgram + + def get_audit_details(self, starttime, endtime, print_info=True): + try: + resp = self.aem_client.export_audit_trail(starttime, endtime) + return resp + except Exception as ex: + print('Error aem_export_audit_details') + print(ex) + return None + # end function get_task_details + +# END class PythonProgram + + +################################# +# example_main # +################################# +def main(): + try: + conn = psycopg2.connect("dbname='audit_data' user='qlik_admin' host='vmpip-q525jzty.lm.lmig.com' password='replicate'") + cur = conn.cursor() + except: + print("I am unable to connect to the database") + # setup_aem_client + program = PythonProgram() + if program.aem_client == None: + print('Error: in aem_client,\nExiting.') + exit() + replicateservers = [] + task_list = {} + + past24hours = 864000000000 + p = subprocess.Popen(["/usr/bin/pwsh", "-Command", "(get-date).ticks"], stdout=subprocess.PIPE) + result = p.communicate() + endticks = "%s" % result[0].decode("utf-8").rstrip().replace("'","") + endticks = int(endticks) + startticks = endticks - past24hours + #print(endticks) + + Utils.print_action_title_without_separator('Retrieving audit details......') + + audit_data = program.get_audit_details(str(startticks), str(endticks)) + audit_info = open('audit_data.log', 'bw') + audit_info.write(audit_data) + audit_info.close() + audit_info = open('audit_data.log', 'br') + audit_dict = [] + for line in audit_info: + temp_dict = {} + line_array = line.decode('utf-8').split(',') + try: + for line_item in line_array: + field = line_item.split(':') + field0 = field[0].replace('{','').replace('}','').replace('"','') + field1 = field[1].replace('{','').replace('}','').replace('"','') + field1_result = '' + if field0 == 'original_time' or field0 == 'audit_time': + p = subprocess.Popen(["/usr/bin/pwsh", "-Command", f"[DateTime]{field1}"], stdout=subprocess.PIPE) #pwsh -Command [DateTime]637975094232163674 + result = p.communicate() + timedate = "%s" % result[0].decode("utf-8").strip() + field1_result = timedate.replace("'", "") + else: + field1_result = field1 + temp_dict[field0] = field1_result + except Exception as e: + print(f'{e}') + else: + try: + cur.execute("""INSERT INTO audit_trail(required_role,user_role,request_url,rest_params,original_time,reporting_node,reporting_user,product,subject_name,severity,audit_time) VALUES + (%(required_role)s, %(user_role)s, %(request_url)s, %(rest_params)s, %(original_time)s, %(reporting_node)s, %(reporting_user)s, %(product)s, %(subject_name)s, %(severity)s, %(audit_time)s)""", temp_dict) + conn.commit() + except KeyError as e: + print(f'{e}') + #audit_dict.append(temp_dict) + conn.close() + audit_info.close() + + # for rowitem in audit_dict: + # try: + # cur.execute("""INSERT INTO audit_trail(required_role,user_role,request_url,rest_params,original_time,reporting_node,reporting_user,product,subject_name,severity,audit_time) VALUES + # (%(required_role)s, %(user_role)s, %(request_url)s, %(rest_params)s, %(original_time)s, %(reporting_node)s, %(reporting_user)s, %(product)s, %(subject_name)s, %(severity)s, %(audit_time)s)""", rowitem) + # except KeyError as e: + # print(f'{e}') + print('\nDONE.') + +### END of function MAIN_USE +############################################################## + + +if __name__ == '__main__': + main() diff --git a/work/audit_export/audit_data.log b/work/audit_export/audit_data.log new file mode 100644 index 0000000..a55d7f0 --- /dev/null +++ b/work/audit_export/audit_data.log @@ -0,0 +1,136 @@ +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084755281503192,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084755281503192} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084755876869643,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084755876869643} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084761282157121,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084761282157121} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084761877524447,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084761877524447} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084767251706073,"reporting_node":"10.176.126.34","reporting_user":"LM\\a0354597","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084767251706073} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084768482043048,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084768482043048} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084769077514283,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084769077514283} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084773256566341,"reporting_node":"10.176.126.34","reporting_user":"LM\\a0354597","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084773256566341} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084774483225087,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084774483225087} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084775078471687,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084775078471687} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084779266404064,"reporting_node":"10.176.126.34","reporting_user":"LM\\a0354597","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084779266404064} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084780482906974,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084780482906974} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084782278649961,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084782278649961} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084785556369629,"reporting_node":"10.176.126.34","reporting_user":"LM\\a0354597","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084785556369629} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084787682748296,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084787682748296} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084788279668910,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084788279668910} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084791557533879,"reporting_node":"10.176.126.34","reporting_user":"LM\\a0354597","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084791557533879} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084793683007820,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084793683007820} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084795479685043,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084795479685043} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084797576414453,"reporting_node":"10.176.126.34","reporting_user":"LM\\a0354597","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084797576414453} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084799685179043,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084799685179043} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084801480931214,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084801480931214} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084804156708875,"reporting_node":"10.176.126.34","reporting_user":"LM\\a0354597","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084804156708875} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084806883452495,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084806883452495} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084808680639697,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084808680639697} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084810805160832,"reporting_node":"10.176.126.34","reporting_user":"LM\\a0354597","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084810805160832} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084812284258834,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084812284258855} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084814681605464,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084814681605464} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084819483983029,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084819483983029} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084821881840181,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084821881840181} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084825484510814,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084825484510814} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084827882854870,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084827882854870} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084829446964997,"reporting_node":"10.176.126.34","reporting_user":"LM\\a0354597","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084829446964997} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084832684559992,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084832684559992} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084833883291783,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084833883291783} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084835446447315,"reporting_node":"10.176.126.34","reporting_user":"LM\\a0354597","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084835446447315} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084838690609422,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084838690609422} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084839883856130,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084839883856130} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084841456791905,"reporting_node":"10.176.126.34","reporting_user":"LM\\a0354597","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084841456791905} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084844685583647,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084844685583647} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084845884359246,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084845884359246} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084847466732746,"reporting_node":"10.176.126.34","reporting_user":"LM\\a0354597","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084847466732746} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084850685605178,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084850685605178} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084851884784290,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084851884784290} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084853476518033,"reporting_node":"10.176.126.34","reporting_user":"LM\\a0354597","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084853476518033} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084857885554896,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084857885554896} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084859084968014,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084859084968014} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084859957134182,"reporting_node":"10.176.126.34","reporting_user":"LM\\a0354597","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084859957134182} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084863886367567,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084863886367567} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084865086066283,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084865086066283} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084867156822520,"reporting_node":"10.176.126.34","reporting_user":"LM\\a0354597","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084867156822520} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084871086813805,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084871086813805} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084872286155777,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084872286155777} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084877087033716,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084877087033716} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084878287127233,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084878287127233} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084883087375302,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084883087375302} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084884287692090,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084884287692090} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084889087489176,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084889087489176} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084891487665467,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084891487665467} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084895089461626,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084895089461626} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084897488613118,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084897488613118} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084902287381697,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084902287381697} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084904688861540,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084904688861540} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084908289572029,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084908289572029} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084910689830545,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084910689830545} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084915488901660,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084915488901660} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084917889893075,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084917889893075} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084921488469776,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084921488469776} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084923891137676,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084923891137676} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084927488575867,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084927488575867} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084929891580223,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084929891580223} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084933489527338,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084933489527338} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084935892111472,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084935892111472} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084940689089667,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084940689089667} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084943092653471,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084943092653471} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084946689436356,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084946689436356} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/system/info","rest_params":{},"original_time":638084949011129593,"reporting_node":"10.180.126.26","reporting_user":"LM\\a1511969","product":"EnterpriseManager","subject_name":"GetAemSystemInfo","severity":"INFO","audit_time":638084949011129593} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084949048787902,"reporting_node":"10.180.126.26","reporting_user":"LM\\a1511969","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084949048787902} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/system/info","rest_params":{},"original_time":638084949050975487,"reporting_node":"10.180.126.26","reporting_user":"LM\\a1511969","product":"EnterpriseManager","subject_name":"GetAemSystemInfo","severity":"INFO","audit_time":638084949050975487} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084949087854071,"reporting_node":"10.180.126.26","reporting_user":"LM\\a1511969","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084949087854071} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084949093010893,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084949093010893} +{"required_role":"ADMIN","user_role":"ADMIN","accepted":true,"request_url":"/v1/security/audit_trail?start_timestamp=638083872030195767&end_timestamp=638084736030195767","rest_params":{"start_timestamp":"638083872030195767","end_timestamp":"638084736030195767"},"original_time":638084952032014689,"reporting_node":"10.239.49.145","reporting_user":"LM\\sapipqlikadmin","product":"EnterpriseManager","subject_name":"AemExportAuditTrail","severity":"INFO","audit_time":638084952032014689} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084952689754350,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084952689754350} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084955049532200,"reporting_node":"10.180.126.26","reporting_user":"LM\\a1511969","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084955049532204} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084955093598736,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084955093598736} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/system/info","rest_params":{},"original_time":638084958363630552,"reporting_node":"10.172.115.46","reporting_user":"LM\\a1519132","product":"EnterpriseManager","subject_name":"GetAemSystemInfo","severity":"INFO","audit_time":638084958363630552} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/servers/QAQRP-EDWPDC/endpoints?search_pattern=%25&role=DB_ROLE_ALL","rest_params":{"server":"QAQRP-EDWPDC","search_pattern":"%","role":"DB_ROLE_ALL"},"original_time":638084958514110249,"reporting_node":"10.172.115.46","reporting_user":"LM\\a1519132","product":"EnterpriseManager","subject_name":"getdatabaselist","severity":"INFO","audit_time":638084958514110249} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084958690500621,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084958690500621} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084958884733683,"reporting_node":"10.172.115.46","reporting_user":"LM\\a1519132","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084958884733683} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084962293721230,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084962293721230} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084965890094499,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084965890094499} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084968294774230,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084968294774230} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084971890376490,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084971890376490} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084975494877555,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084975494877555} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084977891006425,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084977891006425} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084981495956747,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084981495956747} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/system/info","rest_params":{},"original_time":638084982743011564,"reporting_node":"10.172.115.46","reporting_user":"LM\\a1519132","product":"EnterpriseManager","subject_name":"GetAemSystemInfo","severity":"INFO","audit_time":638084982743011564} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084982806298220,"reporting_node":"10.172.115.46","reporting_user":"LM\\a1519132","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084982806298220} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084985090954143,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084985090954143} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084988696041495,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084988696041495} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084988806107190,"reporting_node":"10.172.115.46","reporting_user":"LM\\a1519132","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084988806107190} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084991091603792,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084991091603794} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084994097040188,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084994097040188} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638084995376906243,"reporting_node":"10.172.115.46","reporting_user":"LM\\a1519132","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638084995376906243} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638084997092818491,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638084997092818491} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085000097532482,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085000097532482} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085001377259943,"reporting_node":"10.172.115.46","reporting_user":"LM\\a1519132","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085001377259943} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638085004291780205,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638085004291780205} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085006098328415,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085006098328415} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085007378938677,"reporting_node":"10.172.115.46","reporting_user":"LM\\a1519132","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085007378938677} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638085010291927306,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638085010291927306} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085012098884589,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085012098884589} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085013999830169,"reporting_node":"10.172.115.46","reporting_user":"LM\\a1519132","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085013999830169} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638085016292318525,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638085016292318525} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085018099512985,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085018099512985} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085020589947246,"reporting_node":"10.172.115.46","reporting_user":"LM\\a1519132","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085020589947246} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638085022293178883,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638085022293178883} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085024109315744,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085024109315744} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085027790582371,"reporting_node":"10.172.115.46","reporting_user":"LM\\a1519132","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085027790582371} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638085029492656870,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638085029492656870} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085030700155573,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085030700155573} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085033780989164,"reporting_node":"10.172.115.46","reporting_user":"LM\\a1519132","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085033780989164} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638085036093291328,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638085036093291328} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085037900264825,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085037900264825} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085040980825363,"reporting_node":"10.172.115.46","reporting_user":"LM\\a1519132","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085040980825363} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638085042094304350,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638085042094304350} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085043303468192,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085043303468192} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085046982294982,"reporting_node":"10.172.115.46","reporting_user":"LM\\a1519132","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085046982294982} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638085048094608615,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638085048094608615} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085050501662084,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085050501662084} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085052982705504,"reporting_node":"10.172.115.46","reporting_user":"LM\\a1519132","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085052982705504} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638085054098570715,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638085054098570715} +{"required_role":"OPERATOR","user_role":"DESIGNER","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085056502317499,"reporting_node":"10.172.152.122","reporting_user":"LM\\a1521019","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085056502317499} +{"required_role":"OPERATOR","user_role":"ADMIN","accepted":true,"request_url":"/catalog_service_settings","rest_params":{},"original_time":638085060183382536,"reporting_node":"10.172.115.46","reporting_user":"LM\\a1519132","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"INFO","audit_time":638085060183382536} +{"required_role":"OPERATOR","user_role":"VIEWER","request_url":"/catalog_service_settings","rest_params":{},"original_time":638085061294057050,"reporting_node":"10.173.91.137","reporting_user":"LM\\a1568822","product":"EnterpriseManager","subject_name":"GetCatalogServiceSettings","severity":"WARNING","audit_time":638085061294057050} + \ No newline at end of file diff --git a/work/audit_export/getCurrentTicks.ps1 b/work/audit_export/getCurrentTicks.ps1 new file mode 100644 index 0000000..d608074 --- /dev/null +++ b/work/audit_export/getCurrentTicks.ps1 @@ -0,0 +1 @@ +(get-date).ticks \ No newline at end of file diff --git a/work/convert_to_json/convert_to_json.pl b/work/convert_to_json/convert_to_json.pl new file mode 100644 index 0000000..34a75c4 --- /dev/null +++ b/work/convert_to_json/convert_to_json.pl @@ -0,0 +1,21 @@ +# +# Usage: +# Step 1: >> perl make_license_json.pl license.txt > license.json +# Step 2: >> repctl [-d ] importlicense license_file=license.json +# +# Enjoy! Hein van den Heuvel +# +$comma = q(); # Will become a a comma +for (<>) { + next if /^\s*#/; # Comment? + if (/license_type=/) { # Looks like a license file?} + $license=1; + print qq({\n\t"cmd.license":\t{); # Open up the JSON structure + } + next unless $license and /=/; + chomp; # Remove New-line + s/=/":"/; + print qq(${comma}\n\t\t"${_}"); + $comma = q(,); # Now it must become real +} +print qq(\n\t}\n}\n); # And close the JSON structure diff --git a/work/endpoint_check/aem_client.py b/work/endpoint_check/aem_client.py new file mode 100644 index 0000000..9190b5a --- /dev/null +++ b/work/endpoint_check/aem_client.py @@ -0,0 +1,1061 @@ +""" + Copyright 2018 Attunity + Licensed 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. +""" + +# coding: utf-8 +import os, sys, ssl, base64 +from collections import OrderedDict +import json + +use_python_env_3X = sys.version_info > (3,) +if use_python_env_3X: + from urllib.parse import quote + from urllib.request import Request, urlopen + from urllib.error import HTTPError, URLError + base_string_type = str +else: + from urllib2 import Request, urlopen, HTTPError, URLError, quote + base_string_type = basestring + +HEADERS_CONTENT_TYPE = 'Content-Type' +HEADERS_CONTENT_LENGTH = 'Content-Length' + +# import Enum # if 3.4 its supported in python, else use: pip install enum34 +from enum import Enum + + +#region models + +#Enums +class AemTaskStopReason(Enum): + NONE = 0 + NORMAL = 1 + RECOVERABLE_ERROR = 2 + FATAL_ERROR = 3 + FULL_LOAD_ONLY_FINISHED = 4 + STOPPED_AFTER_FULL_LOAD = 5 + STOPPED_AFTER_CACHED_EVENTS = 6 + EXPRESS_LICENSE_LIMITS_REACHED = 7 + STOPPED_AFTER_DDL_APPLY = 8 + STOPPED_LOW_MEMORY = 9 + STOPPED_LOW_DISK_SPACE = 10 + +class AemEndpointState(Enum): + UNKNOWN = 0 + CONNECTED = 1 + ERROR = 2 + +class EndpointRole(Enum): + ALL = 0 + SOURCE = 1 + TARGET = 2 + BOTH = 3 + +class AemLicenseState(Enum): + VALID_LICENSE = 0 + INVALID_LICENSE_CHECKSUM = 1 + EXPIRED_LICENSE = 2 + NO_LICENSE = 3 + MACHINE_NOT_LICENSED = 4 + INVALID_LICENSE = 5 + +class AemServerState(Enum): + NOT_MONITORED = 0 + MONITORED = 1 + ERROR = 2 + +class AemTableState(Enum): + TABLE_QUEUED = 0 + TABLE_LOADING = 1 + TABLE_COMPLETED = 2 + TABLE_CHANGE_PROCESSING = 3 + TABLE_ERROR = 4 + +class AemRunTaskOptions(Enum): + RESUME_PROCESSING = 1 + RELOAD_TARGET = 2 + RESUME_PROCESSING_FROM_TIMESTAMP = 3 + METADATA_ONLY_RECREATE_ALL_TABLES = 4 + METADATA_ONLY_CREATE_MISSING_TABLES = 5 + RECOVER_USING_LOCALLY_STORED_CHECKPOINT = 6 + RECOVER_USING_CHECKPOINT_STORED_ON_TARGET = 7 + +class AemTaskState(Enum): + NOT_EXIST = 0 + RUNNING = 1 + ERROR = 2 + STOPPED = 3 + PAUSED = 4 + RECOVERY = 5 + STARTING = 6 + STOPPING = 7 + +class AemPlatform(Enum): + UNKNOWN = 0 + WINDOWS = 1 + LINUX = 2 + +class ServerType(Enum): + REPLICATE = 1 + COMPOSE_FDL = 3 + COMPOSE = 4 + COMPOSE_FDW = 5 + +#Base classes +class AemServer(object): + def __init__(self, j = None): + if not j: + self.name = None + self.description = None + self.host = None + self.port = None + self.username = None + self.password = None + self.monitored = True + self.verify_server_certificate = False + self.type = ServerType.REPLICATE + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.type = ServerType[self.type] + +#class AemComposeTaskInfoDetailed(AemTaskInfoDetailedBase): +# def __init__(self, j = None): +# AemTaskInfoDetailedBase.__init__(self, j) + +class AemServerInfo(object): + def __init__(self, j = None): + if not j: + self.name = None + self.description = None + self.host = None + self.port = None + self.state = AemServerState.NOT_MONITORED + self.message = None + self.platform = AemPlatform.UNKNOWN + self.version = None + self.last_connection = None + self.type = ServerType.REPLICATE + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.state = AemServerState[self.state] + self.platform = AemPlatform[self.platform] + self.type = ServerType[self.type] + +class AemTaskInfoDetailedBase(object): + def __init__(self, j = None): + if not j: + self.name = None + self.state = AemTaskState.NOT_EXIST + self.description = None + self.source_endpoint = None + self.target_endpoint = None + self.assigned_tags = [] + self.message = None + self.profile = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.state = AemTaskState[self.state] + self.source_endpoint = TaskEndpoint(self.source_endpoint) + self.target_endpoint = TaskEndpoint(self.target_endpoint) + +class AemComposeTaskInfoDetailed(AemTaskInfoDetailedBase): + def __init__(self, j = None): + AemTaskInfoDetailedBase.__init__(self, j) + +class AemServerDetails(object): + def __init__(self, j = None): + if not j: + self.name = None + self.description = None + self.configuration = None + self.state = AemServerState.NOT_MONITORED + self.message = None + self.version = None + self.license = None + self.last_connection = None + self.task_summary = None + self.resource_utilization = None + self.type = ServerType.REPLICATE + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.configuration = Configuration(self.configuration) + self.state = AemServerState[self.state] + self.license = ApiLicense(self.license) + self.task_summary = AemTasksSummary(self.task_summary) + self.resource_utilization = AemServerUtilization(self.resource_utilization) + self.type = ServerType[self.type] + +#child classes +class AemTaskInfoDetailed(AemTaskInfoDetailedBase): + def __init__(self, j = None): + AemTaskInfoDetailedBase.__init__(self, j) + +class ReplicateServerInfo(AemServerInfo): + def __init__(self, j = None): + AemServerInfo.__init__(self, j) + +class AemComposeDMTaskInfoDetailed(AemComposeTaskInfoDetailed): + def __init__(self, j = None): + AemComposeTaskInfoDetailed.__init__(self, j) + +class AemComposeServer(AemServer): + def __init__(self, j = None): + AemServer.__init__(self, j) + +class AemReplicateServer(AemServer): + def __init__(self, j = None): + AemServer.__init__(self, j) + +class ComposeServerDetails(AemServerDetails): + def __init__(self, j = None): + AemServerDetails.__init__(self, j) + +class ReplicateServerDetails(AemServerDetails): + def __init__(self, j = None): + AemServerDetails.__init__(self, j) + +class ComposeServerInfo(AemServerInfo): + def __init__(self, j = None): + AemServerInfo.__init__(self, j) + +class AemComposeDWTaskInfoDetailed(AemComposeTaskInfoDetailed): + def __init__(self, j = None): + AemComposeTaskInfoDetailed.__init__(self, j) + +class AemComposeDLTaskInfoDetailed(AemComposeTaskInfoDetailed): + def __init__(self, j = None): + AemComposeTaskInfoDetailed.__init__(self, j) + +#simple classes +class AemAuthorizationAcl(object): + def __init__(self, j = None): + if not j: + self.admin_role = None + self.designer_role = None + self.operator_role = None + self.viewer_role = None + self.disable_inheritance = False + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.admin_role = AemRoleDef(self.admin_role) + self.designer_role = AemRoleDef(self.designer_role) + self.operator_role = AemRoleDef(self.operator_role) + self.viewer_role = AemRoleDef(self.viewer_role) + +class AemGetTableStatusesResp(object): + def __init__(self, j = None): + if not j: + self.table_details = [] + else: + self.__dict__ = AttUtil.attobject_from_json(j) + for i, k in enumerate(self.table_details): + self.table_details[i] = AemTableDetails(self.table_details[i]) + +class AemGetTaskListResp(object): + def __init__(self, j = None): + if not j: + self.taskList = [] + else: + self.__dict__ = AttUtil.attobject_from_json(j) + for i, k in enumerate(self.taskList): + self.taskList[i] = AemTaskInfo(self.taskList[i]) + +class AemSetChangeDataRetentionBarrierReq(object): + def __init__(self, j = None): + if not j: + self.application = None + self.retention_point = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class AemGetServerListResp(object): + def __init__(self, j = None): + if not j: + self.serverList = [] + else: + self.__dict__ = AttUtil.attobject_from_json(j) + for i, k in enumerate(self.serverList): + if self.serverList[i]['$type'] == 'ReplicateServerInfo': + self.serverList[i] = ReplicateServerInfo(self.serverList[i]) + continue + if self.serverList[i]['$type'] == 'ComposeServerInfo': + self.serverList[i] = ComposeServerInfo(self.serverList[i]) + continue + +class AemTaskInfo(object): + def __init__(self, j = None): + if not j: + self.name = None + self.state = AemTaskState.STOPPED + self.stop_reason = AemTaskStopReason.NORMAL + self.message = None + self.assigned_tags = [] + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.state = AemTaskState[self.state] + self.stop_reason = AemTaskStopReason[self.stop_reason] + +class AemTableDetails(object): + def __init__(self, j = None): + if not j: + self.schema_on_source = None + self.table_on_source = None + self.schema_on_target = None + self.table_on_target = None + self.state = AemTableState.TABLE_QUEUED + self.data_errors_count = 0 + self.table_full_load_info = None + self.table_cdc_info = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.state = AemTableState[self.state] + self.table_full_load_info = AemTableFullLoadInfo(self.table_full_load_info) + self.table_cdc_info = AemTableCdcInfo(self.table_cdc_info) + +class AemTableFullLoadInfo(object): + def __init__(self, j = None): + if not j: + self.start_time = None + self.end_time = None + self.estimated_row_count = 0 + self.estimated_end_time = None + self.transferred_row_count = 0 + self.transferred_volume_mb = 0 + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class AemGetTableListResp(object): + def __init__(self, j = None): + if not j: + self.tablelist = [] + else: + self.__dict__ = AttUtil.attobject_from_json(j) + for i, k in enumerate(self.tablelist): + self.tablelist[i] = AemTableInfo(self.tablelist[i]) + +class AemDeleteOldChangeDataReq(object): + def __init__(self, j = None): + if not j: + self.timestamp_or_offset = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class AemGroupRef(object): + def __init__(self, j = None): + if not j: + self.name = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class Endpoint(object): + def __init__(self, j = None): + if not j: + self.name = None + self.description = None + self.role = EndpointRole.ALL + self.type = None + self.is_licensed = False + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.role = EndpointRole[self.role] + +class AemGetEndpointListResp(object): + def __init__(self, j = None): + if not j: + self.endpointList = [] + else: + self.__dict__ = AttUtil.attobject_from_json(j) + for i, k in enumerate(self.endpointList): + self.endpointList[i] = Endpoint(self.endpointList[i]) + +class AemServerUtilization(object): + def __init__(self, j = None): + if not j: + self.disk_usage_mb = 0 + self.memory_mb = 0 + self.attunity_cpu_percentage = 0 + self.machine_cpu_percentage = 0 + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class AemGetChangeDataRetentionBarrierResp(object): + def __init__(self, j = None): + if not j: + self.application = None + self.retention_point = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class AemGetServerDetailsResp(object): + def __init__(self, j = None): + if not j: + self.server_details = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + if self.server_details['$type'] == 'ReplicateServerDetails': + self.server_details = ReplicateServerDetails(self.server_details) + elif self.server_details['$type'] == 'ComposeServerDetails': + self.server_details = ComposeServerDetails(self.server_details) + +class AemRoleDef(object): + def __init__(self, j = None): + if not j: + self.users = [] + self.groups = [] + else: + self.__dict__ = AttUtil.attobject_from_json(j) + for i, k in enumerate(self.users): + self.users[i] = AemUserRef(self.users[i]) + for i, k in enumerate(self.groups): + self.groups[i] = AemGroupRef(self.groups[i]) + +class AemRunTaskReq(object): + def __init__(self, j = None): + if not j: + self.cdcposition = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class AemStopTaskResp(object): + def __init__(self, j = None): + if not j: + self.state = AemTaskState.NOT_EXIST + self.error_message = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.state = AemTaskState[self.state] + +class AemTasksSummary(object): + def __init__(self, j = None): + if not j: + self.total = 0 + self.running = 0 + self.stopped = 0 + self.recovering = 0 + self.error = 0 + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class TaskEndpoint(object): + def __init__(self, j = None): + if not j: + self.name = None + self.type = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class AemTableCdcInfo(object): + def __init__(self, j = None): + if not j: + self.insert_count = 0 + self.update_count = 0 + self.delete_count = 0 + self.ddl_count = 0 + self.last_update_time = None + self.cached_insert_count = 0 + self.cached_update_count = 0 + self.cached_delete_count = 0 + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class AemRunTaskResp(object): + def __init__(self, j = None): + if not j: + self.state = AemTaskState.NOT_EXIST + self.error_message = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.state = AemTaskState[self.state] + +class AemUserRef(object): + def __init__(self, j = None): + if not j: + self.name = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + +class AemTableInfo(object): + def __init__(self, j = None): + if not j: + self.schema = None + self.table = None + self.state = AemTableState.TABLE_QUEUED + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.state = AemTableState[self.state] + +class AemTestEndpointResp(object): + def __init__(self, j = None): + if not j: + self.status = AemEndpointState.UNKNOWN + self.message = None + self.detailed_message = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.status = AemEndpointState[self.status] + +class ApiLicense(object): + def __init__(self, j = None): + if not j: + self.issue_date = None + self.state = AemLicenseState.VALID_LICENSE + self.expiration = None + self.days_to_expiration = 0 + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.state = AemLicenseState[self.state] + +class Configuration(object): + def __init__(self, j = None): + if not j: + self.host = None + self.platform = AemPlatform.UNKNOWN + self.port = None + self.user_name = None + else: + self.__dict__ = AttUtil.attobject_from_json(j) + self.platform = AemPlatform[self.platform] + + +#endregion models + +#region utils + +class AuthenticationMethod(Enum): + ACTIVE_DIRECTORY = 0 + SAML = 1 + +class AttUtil(object): + @staticmethod + def quote_param(url_param): + if isinstance(url_param, Enum): + url_param = url_param.name + url_param = str(url_param).encode('utf-8') + url_param = quote(quote(url_param)) + return url_param + # END function AttUtil.quote_param + + @staticmethod + def attobject_from_json(obj): + base_obj = obj + if type(obj) is dict: + return base_obj + try: + if isinstance(obj, base_string_type) or isinstance(obj, str) or isinstance(obj.decode('utf-8'), str): + base_obj = json.loads(obj) + except Exception as ex: + print(ex) + return base_obj + # END function AttUtil.attobject_from_json + + @staticmethod + def attobject_to_json(obj): + if isinstance(obj, Enum): + return obj.name + elif (obj is None or (type(obj) is str) or (type(obj) is int) or (type(obj) is bool) or (type(obj) is bytes) or isinstance(obj, base_string_type) or (str(type(obj)) == "") ): + return obj + elif ( (type(obj) is list) or isinstance(obj, list) ): + arr = [] + for item in obj: + arr.append( AttUtil.attobject_to_json(item)) + return arr + elif ( (type(obj) is dict) or (obj.__dict__ != None) ): + # keep the object Type + obj_type = obj.__class__.__name__ + sorted_dict = OrderedDict() + # set $type as first + sorted_dict['$type'] = obj_type + for key in obj.__dict__: + sorted_dict[key] = AttUtil.attobject_to_json(obj.__dict__[key]) + return sorted_dict + else: + return obj + # END function AttUtil.attobject_to_json + + @staticmethod + def validate_params(param_dict): + for key in param_dict: + item = param_dict[key] + if not isinstance(item["value"], item["type"]): + raise Exception('Param: "{0}" should be of type: "{1}", but was: "{2}"'.format(key, item["type"], type(item["value"]) ) ) + # END function AttUtil.validate_params + + @staticmethod + def get_b64_user_pass(username, password): + username_pass_tpl = str.encode('{0}:{1}'.format(username, password)) + return base64.b64encode(username_pass_tpl).decode('ascii') + # END function AttUtil.get_b64_user_pass +# END class AttUtil + +class AemClientException(Exception): + def __init__(self, error_code, error_message): + self.error_code = error_code + self.message = error_message + Exception.__init__(self, error_code, error_message) + +class AttConnector(object): + def __init__(self, b64_username_password, verify_certificate=True, authentication_method=AuthenticationMethod.ACTIVE_DIRECTORY): + self.verify_certificate = verify_certificate + if authentication_method == AuthenticationMethod.ACTIVE_DIRECTORY: + self.headers = { 'Authorization' : 'Basic %s' % b64_username_password } + else: + self.headers = dict() + if verify_certificate: + ssl._create_default_https_context = ssl.create_default_context + else: + ssl._create_default_https_context = ssl._create_unverified_context + + def att_request(self, method, url, payload=None, get_raw_error=False, content_type='application/json'): + req_headers = {} + for key in self.headers: + req_headers[key] = self.headers[key] + req_headers[HEADERS_CONTENT_TYPE] = content_type + if payload: + payload = payload.encode('utf-8') + req_headers[HEADERS_CONTENT_LENGTH] = str(len(payload)) + elif HEADERS_CONTENT_LENGTH in req_headers: + del req_headers[HEADERS_CONTENT_LENGTH] + att_response = {} + request_pyx = Request(url, data=payload, headers=req_headers) + request_pyx.get_method = lambda: method + try: + att_response = urlopen(request_pyx) + except HTTPError as ex: + if get_raw_error: + att_response = ex + else: + # TODO: G.G. - remove read, and adjust calls and errors + att_response = ex.read() + except URLError as ex: + att_response = ex + except Exception as ex: + att_response = ex + return att_response + # end of att_request + def save_headers(self, response): + headers_dict = {} + try: + resp_info = response.info() + for key in resp_info: + if key != HEADERS_CONTENT_LENGTH: + headers_dict[key] = response.headers[key] + except Exception as ex: + print(ex) + self.headers = headers_dict + # end of save_headers +# END of class AttConnector + +#endregion utils + +#region infrastructure + +class AttClient(object): + def __init__(self, b64_username_password, url="", verify_certificate=True, authentication_method=AuthenticationMethod.ACTIVE_DIRECTORY): + if 'https' not in url: + raise Exception('The Aem access URL must start with "https".') + if not isinstance(authentication_method, AuthenticationMethod): + raise Exception('authentication_method must be of type AuthenticationMethod') + self.url = url + self.attconnector = AttConnector(b64_username_password, verify_certificate, authentication_method) + login_url = '{0}/api/v1/login'.format(self.url) + if authentication_method == AuthenticationMethod.ACTIVE_DIRECTORY: + saml_message = None + else: + saml_message = b64_username_password + response = self.attconnector.att_request(method='POST', url=login_url, payload=saml_message, get_raw_error=True, content_type='application/x-www-form-urlencoded') + if hasattr(response, 'code') and response.code == 200: + self.attconnector.save_headers(response) + else: + self.attconnector = None + if hasattr(response, 'reason') and response.reason: + raise Exception("Http Error: {0}".format(response.reason)) + else: + resp_json = json.loads(response) + raise AemClientException(resp_json['error_code'], resp_json['error_message']) + # END function __init__ + + def do_web_request(self, resp_class=None, address=None, http_method='GET', req = None, stream_req = False): + full_url = '{0}/{1}'.format(self.url, address) + payload = None + if req: + if stream_req: + payload = req + else: + att_json = AttUtil.attobject_to_json(req) + payload = json.dumps( att_json, sort_keys=True ) + response_t = self.attconnector.att_request(method=http_method, url=full_url, payload=payload) + response_text = None + try: + response_text = response_t.read() + except Exception as ex: + if hasattr(response_t, 'reason') and response_t.reason: + raise Exception('Http Error: {0}'.format(response_t.reason)) + else: + response_t = json.loads(response_t) + if 'error_code' in response_t or 'status_code' in response_t: + raise AemClientException(response_t['error_code'], response_t['error_message']) + if resp_class: + return resp_class(response_text) + return response_text + # END function do_web_request + +#endregion infrastructure + + +class AemClient(AttClient): + def __init__(self, b64_username_password, machine_name, port=443, url="https://{0}/attunityenterprisemanager", verify_certificate=True, authentication_method=AuthenticationMethod.ACTIVE_DIRECTORY): + if port != 443: + machine_name = '{0}:{1}'.format(machine_name, port) + if url.find('{0}'): + url = url.format(machine_name) + self.attclient = AttClient(b64_username_password, url, verify_certificate, authentication_method) + def delete_endpoint(self, server, endpoint): + """ + parameters: + server - string + endpoint - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'endpoint':{'value':endpoint,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/endpoints/" + AttUtil.quote_param(endpoint) + "?action=delete" + self.attclient.do_web_request(None, address, 'POST', None) + + def delete_old_change_data(self, payload, server, task): + """ + request payload: AemDeleteOldChangeDataReq + parameters: + server - string + task - string + """ + AttUtil.validate_params({ 'payload':{'value':payload,'type':AemDeleteOldChangeDataReq }, 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "?action=delete_old_change_data" + self.attclient.do_web_request(None, address, 'POST', payload) + + def delete_server_acl(self, server): + """ + parameters: + server - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "?action=acl" + self.attclient.do_web_request(None, address, 'DELETE', None) + + def delete_server(self, server): + """ + parameters: + server - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/def" + self.attclient.do_web_request(None, address, 'DELETE', None) + + def delete_task(self, server, task, deletetasklogs = False): + """ + parameters: + server - string + task - string + deletetasklogs - bool + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type }, 'deletetasklogs':{'value':deletetasklogs,'type':bool } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "?action=delete&deletetasklogs=" + AttUtil.quote_param(deletetasklogs) + "" + self.attclient.do_web_request(None, address, 'POST', None) + + def export_all(self, server): + """ + response payload: STREAM + parameters: + server - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "?action=export" + resp = self.attclient.do_web_request(None, address, 'GET', None) + return resp + + def export_audit_trail(self, start_timestamp = None, end_timestamp = None): + """ + response payload: STREAM + parameters: + start_timestamp - string + end_timestamp - string + """ + AttUtil.validate_params({ 'start_timestamp':{'value':start_timestamp,'type':base_string_type }, 'end_timestamp':{'value':end_timestamp,'type':base_string_type } }) + address = "api/v1/security/audit_trail?start_timestamp=" + AttUtil.quote_param(start_timestamp) + "&end_timestamp=" + AttUtil.quote_param(end_timestamp) + "" + resp = self.attclient.do_web_request(None, address, 'GET', None) + return resp + + def export_task(self, server, task, withendpoints = False): + """ + response payload: STREAM + parameters: + server - string + task - string + withendpoints - bool + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type }, 'withendpoints':{'value':withendpoints,'type':bool } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "?action=export&withendpoints=" + AttUtil.quote_param(withendpoints) + "" + resp = self.attclient.do_web_request(None, address, 'GET', None) + return resp + + def get_change_data_retention_barrier(self, server, task): + """ + response payload: AemGetChangeDataRetentionBarrierResp + parameters: + server - string + task - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "?action=get_change_data_retention_barrier" + resp = self.attclient.do_web_request(AemGetChangeDataRetentionBarrierResp, address, 'GET', None) + return resp + + def get_endpoint_list(self, server): + """ + response payload: AemGetEndpointListResp + parameters: + server - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/endpoints" + resp = self.attclient.do_web_request(AemGetEndpointListResp, address, 'GET', None) + return resp + + def get_server_acl(self, server): + """ + response payload: AemAuthorizationAcl + parameters: + server - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "?action=acl" + resp = self.attclient.do_web_request(AemAuthorizationAcl, address, 'GET', None) + return resp + + def get_server_details(self, server): + """ + response payload: AemGetServerDetailsResp + parameters: + server - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "" + resp = self.attclient.do_web_request(AemGetServerDetailsResp, address, 'GET', None) + return resp + + def get_server_list(self, ): + """ + response payload: AemGetServerListResp + parameters: + """ + address = "api/v1/servers" + resp = self.attclient.do_web_request(AemGetServerListResp, address, 'GET', None) + return resp + + def get_server(self, server): + """ + response payload: AemServer + parameters: + server - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/def" + resp = self.attclient.do_web_request(AemServer, address, 'GET', None) + return resp + + def get_table_list(self, server, task, schema = None, table = None, includequeued = False, includeloading = False, includecompleted = False, includechangeprocessing = False, includeerror = False): + """ + response payload: AemGetTableListResp + parameters: + server - string + task - string + schema - string + table - string + includequeued - bool + includeloading - bool + includecompleted - bool + includechangeprocessing - bool + includeerror - bool + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type }, 'schema':{'value':schema,'type':base_string_type }, 'table':{'value':table,'type':base_string_type }, 'includequeued':{'value':includequeued,'type':bool }, 'includeloading':{'value':includeloading,'type':bool }, 'includecompleted':{'value':includecompleted,'type':bool }, 'includechangeprocessing':{'value':includechangeprocessing,'type':bool }, 'includeerror':{'value':includeerror,'type':bool } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "/tables?schema=" + AttUtil.quote_param(schema) + "&table=" + AttUtil.quote_param(table) + "&includequeued=" + AttUtil.quote_param(includequeued) + "&includeloading=" + AttUtil.quote_param(includeloading) + "&includecompleted=" + AttUtil.quote_param(includecompleted) + "&includechangeprocessing=" + AttUtil.quote_param(includechangeprocessing) + "&includeerror=" + AttUtil.quote_param(includeerror) + "" + resp = self.attclient.do_web_request(AemGetTableListResp, address, 'GET', None) + return resp + + def get_table_statuses(self, server, task, schema = None, table = None, includequeued = False, includeloading = False, includecompleted = False, includechangeprocessing = False, includeerror = False): + """ + response payload: AemGetTableStatusesResp + parameters: + server - string + task - string + schema - string + table - string + includequeued - bool + includeloading - bool + includecompleted - bool + includechangeprocessing - bool + includeerror - bool + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type }, 'schema':{'value':schema,'type':base_string_type }, 'table':{'value':table,'type':base_string_type }, 'includequeued':{'value':includequeued,'type':bool }, 'includeloading':{'value':includeloading,'type':bool }, 'includecompleted':{'value':includecompleted,'type':bool }, 'includechangeprocessing':{'value':includechangeprocessing,'type':bool }, 'includeerror':{'value':includeerror,'type':bool } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "/tables?action=getstatus&schema=" + AttUtil.quote_param(schema) + "&table=" + AttUtil.quote_param(table) + "&includequeued=" + AttUtil.quote_param(includequeued) + "&includeloading=" + AttUtil.quote_param(includeloading) + "&includecompleted=" + AttUtil.quote_param(includecompleted) + "&includechangeprocessing=" + AttUtil.quote_param(includechangeprocessing) + "&includeerror=" + AttUtil.quote_param(includeerror) + "" + resp = self.attclient.do_web_request(AemGetTableStatusesResp, address, 'GET', None) + return resp + + def get_task_details(self, server, task): + """ + response payload: AemTaskInfoDetailedBase + parameters: + server - string + task - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "" + resp = self.attclient.do_web_request(AemTaskInfoDetailedBase, address, 'GET', None) + return resp + + def get_task_list(self, server): + """ + response payload: AemGetTaskListResp + parameters: + server - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks" + resp = self.attclient.do_web_request(AemGetTaskListResp, address, 'GET', None) + return resp + + def import_all(self, payload, server): + """ + request payload: STREAM + parameters: + server - string + """ + AttUtil.validate_params({ 'payload':{'value':payload,'type':base_string_type }, 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "?action=import" + self.attclient.do_web_request(None, address, 'POST', payload, True) + + def import_task(self, payload, server, task): + """ + request payload: STREAM + parameters: + server - string + task - string + """ + AttUtil.validate_params({ 'payload':{'value':payload,'type':base_string_type }, 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "?action=import" + self.attclient.do_web_request(None, address, 'POST', payload, True) + + def put_server_acl(self, payload, server): + """ + request payload: AemAuthorizationAcl + parameters: + server - string + """ + AttUtil.validate_params({ 'payload':{'value':payload,'type':AemAuthorizationAcl }, 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "?action=acl" + self.attclient.do_web_request(None, address, 'PUT', payload) + + def put_server_license(self, payload, server): + """ + request payload: STREAM + parameters: + server - string + """ + AttUtil.validate_params({ 'payload':{'value':payload,'type':base_string_type }, 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/license/def" + self.attclient.do_web_request(None, address, 'PUT', payload, True) + + def put_server(self, payload, server): + """ + request payload: AemServer + parameters: + server - string + """ + AttUtil.validate_params({ 'payload':{'value':payload,'type':AemServer }, 'server':{'value':server,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/def" + self.attclient.do_web_request(None, address, 'PUT', payload) + + def reconfigure_endpoint_no_wait(self, server, endpoint, configuration = None, recycle = True): + """ + parameters: + server - string + endpoint - string + configuration - string + recycle - bool + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'endpoint':{'value':endpoint,'type':base_string_type }, 'configuration':{'value':configuration,'type':base_string_type }, 'recycle':{'value':recycle,'type':bool } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/endpoints/" + AttUtil.quote_param(endpoint) + "?action=reconfigure&configuration=" + AttUtil.quote_param(configuration) + "&recycle=" + AttUtil.quote_param(recycle) + "" + self.attclient.do_web_request(None, address, 'PUT', None) + + def reload_table(self, server, task, schema = None, table = None): + """ + parameters: + server - string + task - string + schema - string + table - string + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type }, 'schema':{'value':schema,'type':base_string_type }, 'table':{'value':table,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "/tables?action=reload&schema=" + AttUtil.quote_param(schema) + "&table=" + AttUtil.quote_param(table) + "" + self.attclient.do_web_request(None, address, 'POST', None) + + def run_task(self, payload, server, task, option = AemRunTaskOptions.RESUME_PROCESSING, timeout = 60): + """ + request payload: AemRunTaskReq + response payload: AemRunTaskResp + parameters: + server - string + task - string + option - AemRunTaskOptions + timeout - int32 + """ + AttUtil.validate_params({ 'payload':{'value':payload,'type':AemRunTaskReq }, 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type }, 'option':{'value':option,'type':AemRunTaskOptions }, 'timeout':{'value':timeout,'type':int } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "?action=run&option=" + AttUtil.quote_param(option) + "&timeout=" + AttUtil.quote_param(timeout) + "" + resp = self.attclient.do_web_request(AemRunTaskResp, address, 'POST', payload) + return resp + + def set_change_data_retention_barrier(self, payload, server, task): + """ + request payload: AemSetChangeDataRetentionBarrierReq + parameters: + server - string + task - string + """ + AttUtil.validate_params({ 'payload':{'value':payload,'type':AemSetChangeDataRetentionBarrierReq }, 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "?action=set_change_data_retention_barrier" + self.attclient.do_web_request(None, address, 'PUT', payload) + + def stop_task(self, server, task, timeout = 30): + """ + response payload: AemStopTaskResp + parameters: + server - string + task - string + timeout - int32 + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'task':{'value':task,'type':base_string_type }, 'timeout':{'value':timeout,'type':int } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/tasks/" + AttUtil.quote_param(task) + "?action=stop&timeout=" + AttUtil.quote_param(timeout) + "" + resp = self.attclient.do_web_request(AemStopTaskResp, address, 'POST', None) + return resp + + def test_endpoint(self, server, endpoint, timeout = 60): + """ + response payload: AemTestEndpointResp + parameters: + server - string + endpoint - string + timeout - int32 + """ + AttUtil.validate_params({ 'server':{'value':server,'type':base_string_type }, 'endpoint':{'value':endpoint,'type':base_string_type }, 'timeout':{'value':timeout,'type':int } }) + address = "api/v1/servers/" + AttUtil.quote_param(server) + "/endpoints/" + AttUtil.quote_param(endpoint) + "?action=test&timeout=" + AttUtil.quote_param(timeout) + "" + resp = self.attclient.do_web_request(AemTestEndpointResp, address, 'GET', None) + return resp + diff --git a/work/endpoint_check/email_template.html b/work/endpoint_check/email_template.html new file mode 100644 index 0000000..5e17b34 --- /dev/null +++ b/work/endpoint_check/email_template.html @@ -0,0 +1,106 @@ + + + + Email Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Qlik Replicate Performance Alert
+
GRM US - Information Management Technology Alert
Qlik Replicate Performance Alert
DateDateNow
Affected Application(s)Attunity Qlik Replicate
EventLatency Performance Issue for the following objects below:
ImpactAffected objects listed below are currently showing high latency.
Action RequiredThis is an informational notification and no action is required by the users.
Contact & Additional InformationSupport teams have been notified of the issue and are working to address it.
If you have any questions, please email: PM EDW Prod Support
+ diff --git a/work/endpoint_check/endpoint_check.py b/work/endpoint_check/endpoint_check.py new file mode 100644 index 0000000..4d62571 --- /dev/null +++ b/work/endpoint_check/endpoint_check.py @@ -0,0 +1,433 @@ +#!/usr/bin/python3 +""" +Copyright 2018 Attunity +Licensed 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. +""" + +# coding: utf-8 +import os, sys, time, datetime, re +import difflib +from os import listdir +from os.path import isfile, join +from shutil import copyfile +from time import sleep +import smtplib +from email.mime.multipart import MIMEMultipart +from email.mime.text import MIMEText +import configparser +from unicodedata import name + +# import AEM-Client +from aem_client import * + +if sys.version_info > (3,): + print('Using environment Python 3.X\n') +else: + print('Using environment Python 2.X\n') + +ENDPOINT_ERRORS = 'endpoint_errors.html' + +# Utility class for Examples +class Utils(object): + @staticmethod + def dollar_type(obj): + """ + get attribute '$type' + """ + return getattr(obj, '$type') + # Utils.dollar_type + + @staticmethod + def enum_name(enum_val): + return enum_val.name + # Utils.enum_name + + @staticmethod + def print_action_title(action_text): + print('\n############################################################') + print('\n{0}\n'.format(str(action_text) ) ) + # Utils.print_action_title + + @staticmethod + def print_action_title_without_separator(action_text): + print('\n{0}\n'.format(str(action_text) ) ) + # Utils.print_action_title_without_separator + + @staticmethod + def time_sleep(duration=3, show_msg=True): + """ + sleep for duration (in seconds) + """ + if show_msg: + print('Sleeping for: {0} seconds'.format(duration)) + time.sleep(duration) + # Utils.time_sleep + + @staticmethod + def get_b64_user_pass(username, password): + """ + return a base64 of 'username:password' + """ + username_password_str = str.encode('{0}:{1}'.format(username, password)) + return base64.b64encode(username_password_str).decode('ascii') + # Utils.get_b64_user_pass + + @staticmethod + def changed_initial(current_value, predefine_value, param_name): + if current_value == predefine_value: + raise RuntimeError('Please replace param: "{0}", value:"{1}", to the real value.'.format(param_name, predefine_value ) ) + # Utils.changed_initial + + @staticmethod + def print_dict_attr(obj, attr_name): + for key in obj.__dict__: + item = obj.__dict__[key] + if hasattr(item, attr_name): + inner_list = getattr(item,attr_name) + for inner_item in inner_list: + print('\t{0}:\t{1}'.format(inner_item.name, key)) + # Utils.print_dict_attr +# END of class Util + +class PythonProgram(object): + def __init__(self, ): + + ### Information for connecting to AEM (replace placeholders with actual connection details) + domain = 'LM' + username = 'sapipqlikadmin' + password = base64.b64decode(b'UHJpbWU1OTY2TG9naWMyMw==').decode('utf-8') + aem_machine_name = 'vmpip-q525jzty.lm.lmig.com' + + Utils.changed_initial(domain, 'DOMAIN', 'domain') + Utils.changed_initial(username, 'USER', 'username') + Utils.changed_initial(password, 'PASSWORD', 'password') + Utils.changed_initial(aem_machine_name, 'some-host', 'aem_machine_name') + # Combine domain and user name - domain\\username + domain_username = '{0}\\{1}'.format(domain, username) + + print('Connecting to AemClient with user "{0}" on machine name: "{1}"...'.format(domain_username, aem_machine_name)) + try: + # The format of credentials AemClient must get is domain\\username:password base64 encoded + b64_username_password = Utils.get_b64_user_pass(domain_username, password) + # Create an instance of AemClient + self.aem_client = AemClient(b64_username_password, aem_machine_name, verify_certificate=False) + print('Done.') + print('\n############################################################') + except Exception as ex: + print('Failed connecting to AemClient') + print(ex) + self.aem_client = None + # end function __init__ for ExamplePythonProgram + + def get_server(self, name): + try: + resp = self.aem_client.get_server(name) + return resp + except Exception as ex: + print(ex) + return None + # end function get_server_acl + + def get_server_list(self): + resp = self.aem_client.get_server_list() + # serverList, tasklist, endpointList - are the only-one in camelCase + if resp and resp.serverList: + return resp.serverList + else: + print('0 server found') + return [] + # end function get_server_list_and_print + + def get_server_details(self, name): + resp = self.aem_client.get_server_details(name) + # serverList, tasklist, endpointList - are the only-one in camelCase + if resp: + return resp + else: + print('0 server found') + return [] + # end function get_server_list_and_print + + def is_task_in_server(self, task_name, server_name): + tasklist_i = self.get_task_list_and_print(server_name, print_list=False) + ### serverList, tasklist, endpointList - are the only-one in camelCase + if not tasklist_i: + return False + task_matches = [task for task in tasklist_i if task.name == task_name] + return len(task_matches) > 0 + # end of function is_task_in_server + + def get_task_list(self, server_name, print_list=False): + resp = self.aem_client.get_task_list(server_name) + if print_list and resp: + print(str( len(resp.tasklist) ) +' task(s) found') + print('For each task show [Name, State, Stop Reason]:\n') + for task in resp.tasklist: + print('\t[{0}, {1}, {2}]'.format(task.name, Utils.enum_name(task.state), Utils.enum_name(task.stop_reason) ) ) + return resp.tasklist + # end function get_task_list_and_print + + def get_task_list_and_print(self, server_name, print_list=False): + resp = self.aem_client.get_task_list(server_name) + if print_list and resp: + print(str( len(resp.tasklist) ) +' task(s) found') + print('For each task show [Name, State, Stop Reason]:\n') + for task in resp.tasklist: + print('\t[{0}, {1}, {2}]'.format(task.name, Utils.enum_name(task.state), Utils.enum_name(task.stop_reason) ) ) + return resp.tasklist + # end function get_task_list_and_print + + #SET that executing import, override and then export task + + def export_task_json(self, server, task, withendpoints=True): + if self.is_task_in_server(task, server): + try: + resp_stream = self.aem_client.export_task(server, task, withendpoints) + str_decoded = resp_stream.decode('utf-8').rstrip() + return str_decoded + except Exception as ex: + print(ex) + print('Error: aem_export_task\n') + jdata = "{\t\"result\": \"SYS-E-HTTPFAIL, SYS-E-HTTPFAIL, Cannot load replication definition...\"\n}\n" + return jdata + else: + print('Error: Task "{0}" is NOT in server: "{1}"\n...'.format(task, server)) + def export_task_json_no_endpoints(self, server, task, withendpoints=False): + if self.is_task_in_server(task, server): + try: + resp_stream = self.aem_client.export_task(server, task, withendpoints) + str_decoded = resp_stream.decode('utf-8').rstrip() + return str_decoded + except Exception as ex: + print(ex) + print('Error: aem_export_task\n') + jdata = "{\t\"result\": \"SYS-E-HTTPFAIL, SYS-E-HTTPFAIL, Cannot load replication definition...\"\n}\n" + return jdata + else: + print('Error: Task "{0}" is NOT in server: "{1}"\n...'.format(task, server)) + + def get_task_details(self, server, task): + resp_stream = self.aem_client.get_task_details(server, task) + return resp_stream + + def get_endpoint_list(self, server): + resp_stream = self.aem_client.get_endpoint_list(server) + return resp_stream + + def test_endpoint(self, server, endpoint): + resp_stream = self.aem_client.test_endpoint(server, endpoint) + return resp_stream + +# END class PythonProgram + +def diffmessage(server1, server2, filename): + print('Checking for differences between ' + server1 + ' and ' + server2 + ' for filename ' + filename) + +def filediff(filename1,filename2, differences): + founddiffs = False + tofiledata = filename1 + filedata = open(tofiledata, 'r') + filelines1 = filedata.readlines() + filedata.close() + for line in filelines1: + if "\"description\":" in line or "\"task_uuid\":" in line: + filelines1.remove(line) + if "\"name\":" in line and re.search(r"[-\d]+", line): + filelines1.remove(line) + fromfiledata = filename2 + filedata = open(fromfiledata, 'r') + filelines2 = filedata.readlines() + filedata.close() + for line in filelines2: + if "\"description\":" in line or "\"task_uuid\":" in line: + filelines2.remove(line) + if "\"name\":" in line and re.search(r"[-\d]+", line): + filelines2.remove(line) + for line in difflib.unified_diff(filelines1, filelines2, fromfile=fromfiledata, tofile=tofiledata, lineterm=''): + differences.write(line + '\n') + founddiffs = True + return(founddiffs) + +founddiffs = False + +################################# +# example_main # +################################# + +CONFIG = configparser.RawConfigParser(allow_no_value=True) +CONFIG.read('D:\\Qlik\\Scripts\\task_check\\settings.ini') + + +def emailsupport(messagetype, messagefile): + """Send to Email""" + me = CONFIG.get('global', 'sender') + you = CONFIG.get('global', 'receivers').split() + + # Open a plain text file for reading. For this example, assume that + # the text file contains only ASCII characters. + message_part = open(messagefile, 'r') + part2 = MIMEText(message_part.read(), 'html') + # Create a text/plain message + message_part.close() + + msg = MIMEMultipart('alternative') + + msg['Subject'] = messagetype + + msg['From'] = me + msg['To'] = ",".join(you) + + msg.attach(part2) + + # Send the message via our own SMTP server, but don't include the envelope header. + sendmail(me, you, msg.as_string()) + +# Set header automation statement for email +def openemail(emailfile): + emailfile.write("

THIS IS AN AUTOMATED NOTIFICATION. PLEASE DO NOT RESPOND TO THIS E-MAIL.

") + emailfile.write("\n") + emailfile.write("\n") + +# Set footer automation statement for email +def closeemail(emailfile): + emailfile.write("
\n") + emailfile.write("

THIS IS AN AUTOMATED NOTIFICATION. PLEASE DO NOT RESPOND TO THIS E-MAIL.

") + emailfile.write("\t") + emailfile.write("\n") + +def sendmail(me, you, mailmsg): + try: + s = smtplib.SMTP(CONFIG.get('global', 'mailhost')) + s.sendmail(me, you, mailmsg) + s.quit() + except smtplib.SMTPException: + print('Email was drafted but I was unable to send it. Unable to connect to mailserver') + return 1 + else: + return 0 + + +def get_endpoint_list(counter, error_list, program, servername, task_list): + if servername == 'DEVQRP-EDWKDC': + print(f'getting endpoint list for {servername}') + endpoint_list = program.get_endpoint_list(servername) + print('Testing server endpoints........') + for endpoint in endpoint_list.endpointList: + test_endpoint(counter, endpoint, error_list, program, servername, task_list) + + +def test_endpoint(counter, endpoint, error_list, program, servername, task_list): + testresult = program.test_endpoint(servername, endpoint.name) + if testresult.status.name != 'CONNECTED': + result = 'FAILED' + tasknamelist = [] + taskname = '' + for tname in task_list: + if endpoint.name in task_list[tname]['source_endpoint'] or endpoint.name in \ + task_list[tname]['target_endpoint']: + tasknamelist.append(task_list[tname]['task_name']) + taskname = ','.join(tasknamelist) + connection_name = 'Server Name: ' + servername + ' Endpoint Name: ' + endpoint.name + error_list[counter] = {'cname': connection_name, 'cvalue': result, 'taskname': taskname} + counter += 1 + + +def get_server_taskinfo(program, server, server_list, task_list, unmonitored): + try: + program.get_task_list(server) + tasks = program.get_task_list(server) + for task in tasks: + field = task.name.split() + server_list[server].append(field[0]) + details = program.get_task_details(server, task.name) + task_list[task.name] = {'task_name': task.name, 'source_endpoint': details.source_endpoint.name, + 'target_endpoint': details.target_endpoint.name} + except Exception: + Utils.print_action_title_without_separator('Server ' + server + ' currently not being monitored.......') + unmonitored = unmonitored + 1 + +def check_env(replicateservers, server, server_list): + replicateservers.append(server.name) + if CONFIG.get('global', 'skip_dev') == '1': + if 'SANDBOX' in server.name or 'DEV' in server.name: + print(f'Skipping sandbox server {server.name}') + else: + server_list[server.name] = [] + else: + server_list[server.name] = [] + +def check_endpoints(): + global main + + error_list = {} + task_list = {} + server_list = {} + replicateservers = [] + unmonitored = 0 + counter = 0 + + # setup_aem_client + program = PythonProgram() + if program.aem_client is None: + print('Error: in aem_client,\nExiting.') + return + + Utils.print_action_title_without_separator('Getting AEM server list......') + mainserver_list = program.get_server_list() + for server in mainserver_list: + check_env(replicateservers, server, server_list) + for server in replicateservers: + get_server_taskinfo(program, server, server_list, task_list, unmonitored) + Utils.print_action_title_without_separator('Checking status of all tasks......') + for servername in server_list: + get_endpoint_list(counter, error_list, program, servername, task_list) + + + nowstamp = datetime.datetime.now() + + if len(error_list) > 0: + nowstamp = datetime.datetime.now() + timestamp = nowstamp.strftime("%m/%d/%Y, %H:%M:%S") + html_report = open('email_template.html', 'r') + task_errors = open(ENDPOINT_ERRORS, 'w') + openemail(task_errors) + for line in html_report: + task_errors.write(line.replace('DateNow', timestamp)) + task_errors.write(' \n') + task_errors.write('\n') + task_errors.write( + '\t\t\t\t\n') + print(f'{len(error_list)} objects detected with errors.') + for idx, sfobject in enumerate(error_list): + numcheck = idx + 2 + if numcheck % 2 == 0: + task_errors.write( + f'\t\t\t\t\n') + else: + task_errors.write( + f'\t\t\t\t\n') + task_errors.write('
Endpoints that failed validation:
ENDPOINTCONNECTION RESULTTASK(s) POSSIBLY AFFECTED
{error_list[idx]["cname"]}{error_list[idx]["cvalue"]}{error_list[idx]["taskname"]}
{error_list[idx]["cname"]}{error_list[idx]["cvalue"]}{error_list[idx]["taskname"]}
\n') + closeemail(task_errors) + task_errors.close() + emailsupport('ENDPOINT VALIDATION FAILURES DETECTED IN QLIK REPLICATE', ENDPOINT_ERRORS) + nowstamp = datetime.datetime.now() + os.remove(ENDPOINT_ERRORS) + else: + print('Zero objects found in error.') + print(f'Endtime: {nowstamp}') + print('Errored tasks detected: ' + str(len(error_list))) + + + +check_endpoints() + diff --git a/work/endpoint_check/settings.ini b/work/endpoint_check/settings.ini new file mode 100644 index 0000000..8a2efaf --- /dev/null +++ b/work/endpoint_check/settings.ini @@ -0,0 +1,6 @@ +[global] +mailhost = smtprelay.lmig.com +sender = Qlik_Admin@LibertyMutual.com +#receivers = HTTP_509@LibertyMutual.com, PMEDW_Prod_Support@LibertyMutual.com +receivers = Wendell.Jones@LibertyMutual.com +skip_dev = 0 diff --git a/work/error_checking/Qlik Error Check Task Importer.xml b/work/error_checking/Qlik Error Check Task Importer.xml new file mode 100644 index 0000000..ea51073 Binary files /dev/null and b/work/error_checking/Qlik Error Check Task Importer.xml differ diff --git a/work/error_checking/error_check_template.ps1 b/work/error_checking/error_check_template.ps1 new file mode 100644 index 0000000..7e59fea --- /dev/null +++ b/work/error_checking/error_check_template.ps1 @@ -0,0 +1,8 @@ +$StartTime = (Get-Date).AddMinutes(-) +$ID= +Get-WinEvent -FilterHashtable @{ + LogName='Application' + ProviderName='Qlik Enterprise Manager' + Id=$ID + StartTime=$StartTime +} | fl * | Out-File -FilePath events.log -Append \ No newline at end of file diff --git a/work/error_checking/error_template.html b/work/error_checking/error_template.html new file mode 100644 index 0000000..807dca2 --- /dev/null +++ b/work/error_checking/error_template.html @@ -0,0 +1,120 @@ + + + + Email Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Qlik Replicate Performance Alert
+
GRM US - Information Management Technology Alert
Qlik Replicate Performance Alert
DateDateNow
Affected Application(s)Attunity Qlik Replicate
EventErrors reported for the following objects below:
ImpactObjects listed below are currently in an ERRORED state.
Action RequiredThis is an informational notification and no action is required by the users.
Contact & Additional InformationSupport teams have been notified of the issue and are working to address it.
If you have any questions, please email: PM EDW Prod Support
+ ContentHere + + + + + + + + + + + + +
No Reply Notice
+
+ + diff --git a/work/error_checking/sf_error_check.py b/work/error_checking/sf_error_check.py new file mode 100644 index 0000000..a9b924e --- /dev/null +++ b/work/error_checking/sf_error_check.py @@ -0,0 +1,201 @@ +""" +Copyright 2018 Attunity +Licensed 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. +""" + +""" +Copyright 2018 Attunity +Licensed 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. +""" + +# coding: utf-8 +import os, datetime, fileinput, shutil +import smtplib +from email.mime.multipart import MIMEMultipart +from email.mime.text import MIMEText +import configparser +import subprocess + +def emailsupport(messagetype, messagefile): + """Send to Email""" + me = GGENV = "Qlik_Admin@LibertyMutual.com" + you = ['HTTP_509@LibertyMutual.com', 'PMEDW_Prod_Support@LibertyMutual.com', 'QLIK_ADMIN@LibertyMutual.com'] + #you = ['Wendell.Jones@libertymutual.com'] + #you = CONFIG.get('global', 'receivers').split() + + # Open a plain text file for reading. For this example, assume that + # the text file contains only ASCII characters. + message_part = open(messagefile, 'r') + part2 = MIMEText(message_part.read(), 'html') + # Create a text/plain message + message_part.close() + + msg = MIMEMultipart('alternative') + + msg['Subject'] = messagetype + + msg['From'] = me + msg['To'] = ",".join(you) + + msg.attach(part2) + + # Send the message via our own SMTP server, but don't include the envelope header. + sendmail(me, you, msg.as_string()) + + +# Set header automation statement for email +def openemail(emailfile): + emailfile.write("

THIS IS AN AUTOMATED NOTIFICATION. PLEASE DO NOT RESPOND TO THIS E-MAIL.

") + emailfile.write("\n") + emailfile.write("\n") + + +# Set footer automation statement for email +def closeemail(emailfile): + emailfile.write("
\n") + emailfile.write("

THIS IS AN AUTOMATED NOTIFICATION. PLEASE DO NOT RESPOND TO THIS E-MAIL.

") + emailfile.write("\t") + emailfile.write("\n") + + +def sendmail(me, you, mailmsg): + # Send the message via our own SMTP server, but don't include the envelope header. + try: + s = smtplib.SMTP('smtprelay.lmig.com') + s.sendmail(me, you, mailmsg) + s.quit() + except smtplib.SMTPException: + print('Email was drafted but I was unable to send it. Unable to connect to mailserver') + return 1 + else: + return 0 + + +CONFIG = configparser.RawConfigParser(allow_no_value=True) +CONFIG.read('settings.ini') +minutes = '180' + +nowstamp = datetime.datetime.now() +script_name = os.path.basename(__file__) +temp_script_dir = os.path.realpath(__file__) +script_dir = temp_script_dir.replace(script_name, '') +print(script_dir) +ps_template = f'{script_dir}error_check_template.ps1' +print(f'Starttime: {nowstamp}') + +# Server changes +server_change_codes = ['300','303','320'] +# Server erors/warnings +server_error_codes = ['301','302','321','322','323','340'] +# Normal Task Events +task_change_codes = ['400','401','402','403','404','405','507','508'] +# Error/Warning Task Events +task_error_codes = ['261','263','406','430','431','432','433','434','435'] + +# Table Suspended +suspend_codes = ['502','506'] + +for event_id in server_error_codes: + ps_file = f'{event_id}_error_check.ps1' + shutil.copy(ps_template, ps_file) + # with fileinput.FileInput(ps_file, inplace=True, backup=f'_bak') as file: + with fileinput.FileInput(ps_file, inplace=True) as file: + for line in file: + if '' in line: + newline = line.replace('', minutes) + print(newline.rstrip()) + elif '' in line: + newline = line.replace('', event_id) + print(newline.rstrip()) + else: + print(line.rstrip()) + subprocess.run(["powershell.exe", f".\{ps_file}"], shell=True) + os.remove(ps_file) +for event_id in task_error_codes: + ps_file = f'{event_id}_error_check.ps1' + shutil.copy(ps_template, ps_file) + # with fileinput.FileInput(ps_file, inplace=True, backup=f'_bak') as file: + with fileinput.FileInput(ps_file, inplace=True) as file: + for line in file: + if '' in line: + newline = line.replace('', minutes) + print(newline.rstrip()) + elif '' in line: + newline = line.replace('', event_id) + print(newline.rstrip()) + else: + print(line.rstrip()) + subprocess.run(["powershell.exe", f".\{ps_file}"], shell=True) + #os.remove(ps_file) +for event_id in suspend_codes: + ps_file = f'{event_id}_error_check.ps1' + shutil.copy(ps_template, ps_file) + #with fileinput.FileInput(ps_file, inplace=True, backup=f'_bak') as file: + with fileinput.FileInput(ps_file, inplace=True) as file: + for line in file: + if '' in line: + newline = line.replace('', minutes) + print(newline.rstrip()) + elif '' in line: + newline = line.replace('', event_id) + print(newline.rstrip()) + else: + print(line.rstrip()) + subprocess.run(["powershell.exe", f".\{ps_file}"], shell=True) + os.remove(ps_file) + +file_stats = os.stat('events.log') +if file_stats.st_size > 0: + events = '' + eventfile = open('events.log', 'r') + for line in eventfile: + #print(line.rstrip()) + if len(line) > 23: + events += f"{line.rstrip()}
\n" + eventfile.close() +# print(events) +# exit() + environments = [] + timestamp = nowstamp.strftime("%m/%d/%Y, %H:%M:%S") + html_report = open('error_template.html', 'r') + latency_list = [] + latency = open('error.html', 'w') + openemail(latency) + for line in html_report: + if 'DateNow' in line: + latency.write(line.replace('DateNow', timestamp)) + elif 'ContentHere' in line: + latency.write(line.replace('ContentHere', f'

{events}

')) + else: + latency.write(line) + closeemail(latency) + latency.close() + subjectenvironment = ' & '.join(environments) + emailsupport(f'ERROR EVENT(S) DETECTED IN {subjectenvironment} QLIK REPLICATE', 'error.html') + print(f'ERROR EVENT(S) DETECTED IN {subjectenvironment} QLIK REPLICATE') + nowstamp = datetime.datetime.now() + os.remove('error.html') +os.remove('events.log') +nowstamp = datetime.datetime.now() +print(f'Endtime: {nowstamp}') +#print('errors_detected: ' + str(latency_detected)) diff --git a/work/latency_check/Qlik Latency Check Task Importer.xml b/work/latency_check/Qlik Latency Check Task Importer.xml new file mode 100644 index 0000000..d077d26 Binary files /dev/null and b/work/latency_check/Qlik Latency Check Task Importer.xml differ diff --git a/work/latency_check/email_template.html b/work/latency_check/email_template.html new file mode 100644 index 0000000..db53cf4 --- /dev/null +++ b/work/latency_check/email_template.html @@ -0,0 +1,107 @@ + + + + Email Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Qlik Replicate Performance Alert
+
GRM US - Information Management Technology Alert
Qlik Replicate Performance Alert
DateDateNow
Affected Application(s)Attunity Qlik Replicate
EventLatency Performance Issue for the following objects below:
ImpactAffected objects listed below are currently showing high latency.
Action RequiredThis is an informational notification and no action is required by the users.
Contact & Additional InformationSupport teams have been notified of the issue and are working to address it.
If you have any questions, please email: PM EDW Prod Support
+ + diff --git a/work/latency_check/settings.ini b/work/latency_check/settings.ini new file mode 100644 index 0000000..92e4fb4 --- /dev/null +++ b/work/latency_check/settings.ini @@ -0,0 +1,12 @@ +[global] +mailhost = smtprelay.lmig.com +sender = Qlik_Admin@LibertyMutual.com +receivers = HTTP_509@LibertyMutual.com, PMEDW_Prod_Support@LibertyMutual.com, QLIK_ADMIN@LibertyMutual.com +#receivers = Wendell.Jones@LibertyMutual.com +minutes = 180 +query = SELECT T.EXT_NAME, T.REP_HOST, T.REP_NAME, T.SOURCE_DTM FROM EDW_GOLDENGATE_LATENCY_TABLE T inner join (SELECT REP_NAME, MAX(SOURCE_DTM) AS MAX_SOURCE_DTM FROM EDW_GOLDENGATE_LATENCY_TABLE GROUP BY REP_NAME) A on t.REP_NAME = a.REP_NAME and t.SOURCE_DTM = a.MAX_SOURCE_DTM ORDER BY REP_NAME + +[sf_targets] +#0=DEV,PL_DEV_QLIK_PM_EDW_TRANS_D,TU5uSHE2WVA=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PL_DEV,PM_EDW_META_D +2=QA,PL_QA_QLIK_PM_EDW_TRANS_D,T01JN3RDYko=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PL_QA,PM_EDW_META_D +3=PROD,PL_PROD_QLIK_PM_EDW_TRANS_D,bUR4MjV5Ulk=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PL_PROD,PM_EDW_META_D \ No newline at end of file diff --git a/work/latency_check/sf_latency_check.py b/work/latency_check/sf_latency_check.py new file mode 100644 index 0000000..b963c59 --- /dev/null +++ b/work/latency_check/sf_latency_check.py @@ -0,0 +1,176 @@ +""" +Copyright 2018 Attunity +Licensed 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. +""" + +# coding: utf-8 +import os, datetime, socket, sys, fileinput +from snowflake import connector +import base64 +import progressbar +import smtplib +from email.mime.multipart import MIMEMultipart +from email.mime.text import MIMEText +import configparser + +def emailsupport(messagetype, messagefile): + """Send to Email""" + me = GGENV = CONFIG.get('global', 'sender') + #you = ['HTTP_509@LibertyMutual.com', 'PMEDW_Prod_Support@LibertyMutual.com'] + you = CONFIG.get('global', 'receivers').split() + + # Open a plain text file for reading. For this example, assume that + # the text file contains only ASCII characters. + message_part = open(messagefile, 'r') + part2 = MIMEText(message_part.read(), 'html') + # Create a text/plain message + message_part.close() + + msg = MIMEMultipart('alternative') + + msg['Subject'] = messagetype + + msg['From'] = me + msg['To'] = ",".join(you) + + msg.attach(part2) + + # Send the message via our own SMTP server, but don't include the envelope header. + sendmail(me, you, msg.as_string()) + +# Set header automation statement for email +def openemail(emailfile): + emailfile.write("

THIS IS AN AUTOMATED NOTIFICATION. PLEASE DO NOT RESPOND TO THIS E-MAIL.

") + emailfile.write("\n") + emailfile.write("\n") + +# Set footer automation statement for email +def closeemail(emailfile): + emailfile.write("
\n") + emailfile.write("

THIS IS AN AUTOMATED NOTIFICATION. PLEASE DO NOT RESPOND TO THIS E-MAIL.

") + emailfile.write("\t") + emailfile.write("\n") + +def sendmail(me, you, mailmsg): + # Send the message via our own SMTP server, but don't include the envelope header. + try: + s = smtplib.SMTP(CONFIG.get('global', 'mailhost')) + s.sendmail(me, you, mailmsg) + s.quit() + except smtplib.SMTPException: + print('Email was drafted but I was unable to send it. Unable to connect to mailserver') + return 1 + else: + return 0 + +CONFIG = configparser.RawConfigParser(allow_no_value=True) +CONFIG.read('settings.ini') +sf_logins = [] +for option, value in CONFIG.items('sf_targets'): + itemlist = value.split(',') + pw = bytes(itemlist[2], 'UTF8') + npw = base64.b64decode(pw).decode('UTF8') + sf_logins.append([itemlist[0],itemlist[1],npw,itemlist[3],itemlist[4],itemlist[5],itemlist[6]]) + +nowstamp = datetime.datetime.now() +script_name = os.path.basename(__file__) +object_list = [] +latency_detected = False +latency_minutes = CONFIG.get('global', 'minutes') +latency_seconds = int(latency_minutes) * 60 +sfquery = CONFIG.get('global', 'query') +sfdict = {} + +print(f'Scanning for objects with latency more than {latency_minutes} minute(s) ({latency_seconds} seconds).') +print(f'Starttime: {nowstamp}') +updaterange = len(sf_logins) +with progressbar.ProgressBar(maxval=updaterange, redirect_stdout=True) as p: + for i in range(updaterange): + login_name=sf_logins[i][1] + login_password=sf_logins[i][2] + sf_account=sf_logins[i][3] + sf_warehouse=sf_logins[i][4] + sf_database=sf_logins[i][5] + sf_schema=sf_logins[i][6] + counter = 0 + try: + conn = connector.connect( + user=login_name, + password=str(login_password), + account=sf_account, + database=sf_database, + schema=sf_schema, + ) + conn._paramstyle='qmark' + except Exception as e: + print('Unable to connect to Snowflake') + print(str(e)) + + + #print(f'Connection to Snowflake established as {login_name}.') + + rootdir = os.getcwd() + + server_name = socket.gethostname() + + current_time = datetime.datetime.now() + cur = conn.cursor() + cur.execute(sfquery) + #print(cur.sfqid) + cur.get_results_from_sfqid(cur.sfqid) + results = cur.fetchall() + #print(f'result retrieval successful.') + for result in results: + #print(result) + time_difference = current_time - result[3] + if time_difference.total_seconds() > int(latency_seconds): + if result[2] == '$AR_V_TASK_NAME': + pass + elif result not in object_list: + latency_detected = True + object_list.append(result) + sfdict[counter] = {'ENV': sf_logins[i][0], 'EXT_NAME': result[0], 'REP_HOST': result[1], 'REP_NAME': result[2], 'SRC_DTM': result[3]} + counter += 1 + conn.close() + p.update(i) + +if len(sfdict) > 0: + timestamp = nowstamp.strftime("%m/%d/%Y, %H:%M:%S") + html_report = open('email_template.html', 'r') + latency_list = [] + latency = open('latency.html', 'w') + openemail(latency) + for line in html_report: + latency.write(line.replace('DateNow', timestamp)) + latency.write(' \n') + latency.write(f'\n') + latency.write(f'\t\t\t\t\n') + print(f'{len(sfdict)} objects detected with latency.') + for idx, sfobject in enumerate(sfdict): + time_difference = nowstamp - sfdict[idx]["SRC_DTM"] + time_in_minutes = round(int(time_difference.total_seconds() / 60)) + numcheck = idx + 2 + if numcheck % 2 == 0: + latency.write(f'\t\t\t\t\n') + else: + latency.write(f'\t\t\t\t\n') + latency.write('
Objects with more than {int(latency_minutes)} minute(s) of latency:
ENVIRONMENTTARGET DATABASEREPLICATE HOSTTASK OBJECTLAST CANARY UPDATELATENCY (MINUTES)
{sfdict[idx]["ENV"]}{sfdict[idx]["EXT_NAME"]}{sfdict[idx]["REP_HOST"].strip()}{sfdict[idx]["REP_NAME"]}{str(sfdict[idx]["SRC_DTM"])}{str(time_in_minutes)} minutes behind
{sfdict[idx]["ENV"]}{sfdict[idx]["EXT_NAME"]}{sfdict[idx]["REP_HOST"].strip()}{sfdict[idx]["REP_NAME"]}{str(sfdict[idx]["SRC_DTM"])}{str(time_in_minutes)} minutes behind
\n') + closeemail(latency) + latency.close() + emailsupport('LATENCY DETECTED IN QLIK REPLICATE', 'latency.html') + nowstamp = datetime.datetime.now() + os.remove('latency.html') +else: + print('Zero objects detected with latency.') +print(f'Endtime: {nowstamp}') +print('latency_detected: ' + str(latency_detected)) diff --git a/work/recovery-ui/AB_SCHEDULEDJOB.csv b/work/recovery-ui/AB_SCHEDULEDJOB.csv new file mode 100644 index 0000000..feec80f --- /dev/null +++ b/work/recovery-ui/AB_SCHEDULEDJOB.csv @@ -0,0 +1,46 @@ +"change_seq","change_oper","change_mask","stream_position","operation","transaction_id","timestamp",nexttime,publicid,actualschedule,version,configschedule,processtype,id,ods_cdc_trans_type,ods_eff_row_dtm,ods_create_row_dtm,ods_row_process_dtm,ods_eff_row_dt,gg_xid,gg_correlation_id,gg_user_id,gg_fileseqno,gg_filerba,ods_exp_row_dtm,ods_sid,ods_audit_id +20221219223500000000000000058470041,U,,1357;638070861010266270;20220828031015484892|00000041.70e72e77.00000001.0009.02.0000:229850.625306.16,UPDATE,61000D00000000000000000000000000,2022-12-19 22:35:00,1671489900000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39516.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 17:35:00,2022-12-19 17:35:00,2022-12-19 17:35:06.714,2022-12-19,61000D0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192235e+16,58470041.0,9999-12-31 23:59:59,58470041.0, +20221219224500000000000000058473881,U,,1358;638070867004892990;20220828031015484892|00000041.70eddf5a.00000001.0005.02.0000:229854.561832.16,UPDATE,3D001700000000000000000000000000,2022-12-19 22:45:00,1671490500000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39517.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 17:45:00,2022-12-19 17:45:00,2022-12-19 17:45:05.587,2022-12-19,3D00170000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192245e+16,58473881.0,9999-12-31 23:59:59,58473881.0, +20221219225500000000000000058477217,U,,1358;638070873010382510;20220828031015484892|00000041.70f48f96.00000001.000c.02.0000:229857.416626.16,UPDATE,59002000000000000000000000000000,2022-12-19 22:55:00,1671491100000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39518.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 17:55:00,2022-12-19 17:55:00,2022-12-19 17:55:07.128,2022-12-19,5900200000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192255e+16,58477217.0,9999-12-31 23:59:59,58477217.0, +20221219230000000000000000058479009,U,,1358;638070876010049860;20220828031015484892|00000041.70f7b305.00000001.0030.02.0000:229858.789205.16,UPDATE,7D001400000000000000000000000000,2022-12-19 23:00:00,1671494400000.0,ab:1,"0 0 * * * ?",6602.0,"0 0 * * * ?",2.0,1.0,U,2022-12-19 18:00:00,2022-12-19 18:00:00,2022-12-19 18:00:08.900,2022-12-19,7D00140000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.022121923e+16,58479009.0,9999-12-31 23:59:59,58479009.0, +20221219230500000000000000058481369,U,,1358;638070879010640210;20220828031015484892|00000041.70fc4c5f.00000001.0003.02.0000:229860.931427.16,UPDATE,29000F00000000000000000000000000,2022-12-19 23:05:00,1671491700000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39519.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 18:05:00,2022-12-19 18:05:00,2022-12-19 18:05:07.506,2022-12-19,29000F0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192305e+16,58481369.0,9999-12-31 23:59:59,58481369.0, +20221219231500000000000000058484745,U,,1358;638070885007402130;20220828031015484892|00000041.7106dfe8.00000001.000a.02.0000:229867.74757.16,UPDATE,5C000900000000000000000000000000,2022-12-19 23:15:00,1671492300000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39520.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 18:15:00,2022-12-19 18:15:00,2022-12-19 18:15:05.838,2022-12-19,5C00090000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192315e+16,58484745.0,9999-12-31 23:59:59,58484745.0, +20221219232500000000000000058487989,U,,1358;638070891012995160;20220828031015484892|00000041.710e0c0f.00000001.0000.02.0000:229870.379990.16,UPDATE,20000500000000000000000000000000,2022-12-19 23:25:00,1671492900000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39521.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 18:25:00,2022-12-19 18:25:00,2022-12-19 18:25:08.594,2022-12-19,2000050000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192325e+16,58487989.0,9999-12-31 23:59:59,58487989.0, +20221219233500000000000000058491393,U,,1358;638070897033128790;20220828031015484892|00000041.71136a6e.00000001.0000.02.0000:229872.691033.16,UPDATE,2C001A00000000000000000000000000,2022-12-19 23:35:00,1671493500000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39522.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 18:35:00,2022-12-19 18:35:00,2022-12-19 18:35:08.581,2022-12-19,2C001A0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192335e+16,58491393.0,9999-12-31 23:59:59,58491393.0, +20221219234500000000000000058494453,U,,1358;638070903050942200;20220828031015484892|00000041.7117f48c.00000001.0006.02.0000:229875.481638.16,UPDATE,73001B00000000000000000000000000,2022-12-19 23:45:00,1671494100000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39523.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 18:45:00,2022-12-19 18:45:00,2022-12-19 18:45:10.458,2022-12-19,73001B0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192345e+16,58494453.0,9999-12-31 23:59:59,58494453.0, +20221219235500000000000000058497189,U,,1358;638070909018719570;20220828031015484892|00000041.711c97b9.00000001.0001.02.0000:229877.490397.16,UPDATE,0B001800000000000000000000000000,2022-12-19 23:55:00,1671494700000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39524.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 18:55:00,2022-12-19 18:55:00,2022-12-19 18:55:07.075,2022-12-19,0B00180000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192355e+16,58497189.0,9999-12-31 23:59:59,58497189.0, +20221220000000000000000000058498693,U,,1358;638070912043475330;20220828031015484892|00000041.711e9f3e.00000001.0000.02.0000:229878.448050.16,UPDATE,46001F00000000000000000000000000,2022-12-20 00:00:00,1671498000000.0,ab:1,"0 0 * * * ?",6603.0,"0 0 * * * ?",2.0,1.0,U,2022-12-19 19:00:00,2022-12-19 19:00:00,2022-12-19 19:00:09.676,2022-12-19,46001F0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.022122e+16,58498693.0,9999-12-31 23:59:59,58498693.0, +20221220000500000000000000058500317,U,,1358;638070915019186990;20220828031015484892|00000041.7120cfec.00000001.0000.02.0000:229879.617298.16,UPDATE,06002000000000000000000000000000,2022-12-20 00:05:00,1671495300000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39525.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 19:05:00,2022-12-19 19:05:00,2022-12-19 19:05:07.091,2022-12-19,0600200000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212200005e+16,58500317.0,9999-12-31 23:59:59,58500317.0, +20221220001500000000000000058502425,U,,1358;638070921030448180;20220828031015484892|00000041.71248b01.00000001.0000.02.0000:229882.326719.16,UPDATE,5C000D00000000000000000000000000,2022-12-20 00:15:00,1671495900000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39526.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 19:15:00,2022-12-19 19:15:00,2022-12-19 19:15:08.296,2022-12-19,5C000D0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212200015e+16,58502425.0,9999-12-31 23:59:59,58502425.0, +20221220002500000000000000058504745,U,,1358;638070927012801740;20220828031015484892|00000041.71285eb3.00000001.0000.02.0000:229884.391207.16,UPDATE,7C000000000000000000000000000000,2022-12-20 00:25:00,1671496500000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39527.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 19:25:00,2022-12-19 19:25:00,2022-12-19 19:25:06.386,2022-12-19,7C00000000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212200025e+16,58504745.0,9999-12-31 23:59:59,58504745.0, +20221220003500000000000000058507169,U,,1358;638070933013309810;20220828031015484892|00000041.712b8eca.00000001.0001.02.0000:229886.337760.16,UPDATE,1A001C00000000000000000000000000,2022-12-20 00:35:00,1671497100000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39528.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 19:35:00,2022-12-19 19:35:00,2022-12-19 19:35:07.747,2022-12-19,1A001C0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212200035e+16,58507169.0,9999-12-31 23:59:59,58507169.0, +20221219223500000000000000058470041,U,,1357;638070861010266270;20220828031015484892|00000041.70e72e77.00000001.0009.02.0000:229850.625306.16,UPDATE,61000D00000000000000000000000000,2022-12-19 22:35:00,1671489900000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39516.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 17:35:00,2022-12-19 17:35:00,2022-12-19 17:35:06.714,2022-12-19,61000D0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192235e+16,58470041.0,9999-12-31 23:59:59,58470041.0, +20221219223500000000000000058470041,U,,1357;638070861010266270;20220828031015484892|00000041.70e72e77.00000001.0009.02.0000:229850.625306.16,UPDATE,61000D00000000000000000000000000,2022-12-19 22:35:00,1671489900000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39516.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 17:35:00,2022-12-19 17:35:00,2022-12-19 17:35:06.714,2022-12-19,61000D0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192235e+16,58470041.0,9999-12-31 23:59:59,58470041.0, +20221219224500000000000000058473881,U,,1358;638070867004892990;20220828031015484892|00000041.70eddf5a.00000001.0005.02.0000:229854.561832.16,UPDATE,3D001700000000000000000000000000,2022-12-19 22:45:00,1671490500000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39517.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 17:45:00,2022-12-19 17:45:00,2022-12-19 17:45:05.587,2022-12-19,3D00170000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192245e+16,58473881.0,9999-12-31 23:59:59,58473881.0, +20221219224500000000000000058473881,U,,1358;638070867004892990;20220828031015484892|00000041.70eddf5a.00000001.0005.02.0000:229854.561832.16,UPDATE,3D001700000000000000000000000000,2022-12-19 22:45:00,1671490500000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39517.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 17:45:00,2022-12-19 17:45:00,2022-12-19 17:45:05.587,2022-12-19,3D00170000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192245e+16,58473881.0,9999-12-31 23:59:59,58473881.0, +20221219225500000000000000058477217,U,,1358;638070873010382510;20220828031015484892|00000041.70f48f96.00000001.000c.02.0000:229857.416626.16,UPDATE,59002000000000000000000000000000,2022-12-19 22:55:00,1671491100000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39518.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 17:55:00,2022-12-19 17:55:00,2022-12-19 17:55:07.128,2022-12-19,5900200000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192255e+16,58477217.0,9999-12-31 23:59:59,58477217.0, +20221219225500000000000000058477217,U,,1358;638070873010382510;20220828031015484892|00000041.70f48f96.00000001.000c.02.0000:229857.416626.16,UPDATE,59002000000000000000000000000000,2022-12-19 22:55:00,1671491100000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39518.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 17:55:00,2022-12-19 17:55:00,2022-12-19 17:55:07.128,2022-12-19,5900200000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192255e+16,58477217.0,9999-12-31 23:59:59,58477217.0, +20221219230000000000000000058479009,U,,1358;638070876010049860;20220828031015484892|00000041.70f7b305.00000001.0030.02.0000:229858.789205.16,UPDATE,7D001400000000000000000000000000,2022-12-19 23:00:00,1671494400000.0,ab:1,"0 0 * * * ?",6602.0,"0 0 * * * ?",2.0,1.0,U,2022-12-19 18:00:00,2022-12-19 18:00:00,2022-12-19 18:00:08.900,2022-12-19,7D00140000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.022121923e+16,58479009.0,9999-12-31 23:59:59,58479009.0, +20221219230000000000000000058479009,U,,1358;638070876010049860;20220828031015484892|00000041.70f7b305.00000001.0030.02.0000:229858.789205.16,UPDATE,7D001400000000000000000000000000,2022-12-19 23:00:00,1671494400000.0,ab:1,"0 0 * * * ?",6602.0,"0 0 * * * ?",2.0,1.0,U,2022-12-19 18:00:00,2022-12-19 18:00:00,2022-12-19 18:00:08.900,2022-12-19,7D00140000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.022121923e+16,58479009.0,9999-12-31 23:59:59,58479009.0, +20221219230500000000000000058481369,U,,1358;638070879010640210;20220828031015484892|00000041.70fc4c5f.00000001.0003.02.0000:229860.931427.16,UPDATE,29000F00000000000000000000000000,2022-12-19 23:05:00,1671491700000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39519.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 18:05:00,2022-12-19 18:05:00,2022-12-19 18:05:07.506,2022-12-19,29000F0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192305e+16,58481369.0,9999-12-31 23:59:59,58481369.0, +20221219230500000000000000058481369,U,,1358;638070879010640210;20220828031015484892|00000041.70fc4c5f.00000001.0003.02.0000:229860.931427.16,UPDATE,29000F00000000000000000000000000,2022-12-19 23:05:00,1671491700000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39519.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 18:05:00,2022-12-19 18:05:00,2022-12-19 18:05:07.506,2022-12-19,29000F0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192305e+16,58481369.0,9999-12-31 23:59:59,58481369.0, +20221219231500000000000000058484745,U,,1358;638070885007402130;20220828031015484892|00000041.7106dfe8.00000001.000a.02.0000:229867.74757.16,UPDATE,5C000900000000000000000000000000,2022-12-19 23:15:00,1671492300000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39520.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 18:15:00,2022-12-19 18:15:00,2022-12-19 18:15:05.838,2022-12-19,5C00090000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192315e+16,58484745.0,9999-12-31 23:59:59,58484745.0, +20221219231500000000000000058484745,U,,1358;638070885007402130;20220828031015484892|00000041.7106dfe8.00000001.000a.02.0000:229867.74757.16,UPDATE,5C000900000000000000000000000000,2022-12-19 23:15:00,1671492300000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39520.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 18:15:00,2022-12-19 18:15:00,2022-12-19 18:15:05.838,2022-12-19,5C00090000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192315e+16,58484745.0,9999-12-31 23:59:59,58484745.0, +20221219232500000000000000058487989,U,,1358;638070891012995160;20220828031015484892|00000041.710e0c0f.00000001.0000.02.0000:229870.379990.16,UPDATE,20000500000000000000000000000000,2022-12-19 23:25:00,1671492900000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39521.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 18:25:00,2022-12-19 18:25:00,2022-12-19 18:25:08.594,2022-12-19,2000050000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192325e+16,58487989.0,9999-12-31 23:59:59,58487989.0, +20221219232500000000000000058487989,U,,1358;638070891012995160;20220828031015484892|00000041.710e0c0f.00000001.0000.02.0000:229870.379990.16,UPDATE,20000500000000000000000000000000,2022-12-19 23:25:00,1671492900000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39521.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 18:25:00,2022-12-19 18:25:00,2022-12-19 18:25:08.594,2022-12-19,2000050000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192325e+16,58487989.0,9999-12-31 23:59:59,58487989.0, +20221219233500000000000000058491393,U,,1358;638070897033128790;20220828031015484892|00000041.71136a6e.00000001.0000.02.0000:229872.691033.16,UPDATE,2C001A00000000000000000000000000,2022-12-19 23:35:00,1671493500000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39522.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 18:35:00,2022-12-19 18:35:00,2022-12-19 18:35:08.581,2022-12-19,2C001A0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192335e+16,58491393.0,9999-12-31 23:59:59,58491393.0, +20221219233500000000000000058491393,U,,1358;638070897033128790;20220828031015484892|00000041.71136a6e.00000001.0000.02.0000:229872.691033.16,UPDATE,2C001A00000000000000000000000000,2022-12-19 23:35:00,1671493500000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39522.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 18:35:00,2022-12-19 18:35:00,2022-12-19 18:35:08.581,2022-12-19,2C001A0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192335e+16,58491393.0,9999-12-31 23:59:59,58491393.0, +20221219234500000000000000058494453,U,,1358;638070903050942200;20220828031015484892|00000041.7117f48c.00000001.0006.02.0000:229875.481638.16,UPDATE,73001B00000000000000000000000000,2022-12-19 23:45:00,1671494100000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39523.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 18:45:00,2022-12-19 18:45:00,2022-12-19 18:45:10.458,2022-12-19,73001B0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192345e+16,58494453.0,9999-12-31 23:59:59,58494453.0, +20221219234500000000000000058494453,U,,1358;638070903050942200;20220828031015484892|00000041.7117f48c.00000001.0006.02.0000:229875.481638.16,UPDATE,73001B00000000000000000000000000,2022-12-19 23:45:00,1671494100000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39523.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 18:45:00,2022-12-19 18:45:00,2022-12-19 18:45:10.458,2022-12-19,73001B0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192345e+16,58494453.0,9999-12-31 23:59:59,58494453.0, +20221219235500000000000000058497189,U,,1358;638070909018719570;20220828031015484892|00000041.711c97b9.00000001.0001.02.0000:229877.490397.16,UPDATE,0B001800000000000000000000000000,2022-12-19 23:55:00,1671494700000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39524.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 18:55:00,2022-12-19 18:55:00,2022-12-19 18:55:07.075,2022-12-19,0B00180000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192355e+16,58497189.0,9999-12-31 23:59:59,58497189.0, +20221219235500000000000000058497189,U,,1358;638070909018719570;20220828031015484892|00000041.711c97b9.00000001.0001.02.0000:229877.490397.16,UPDATE,0B001800000000000000000000000000,2022-12-19 23:55:00,1671494700000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39524.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 18:55:00,2022-12-19 18:55:00,2022-12-19 18:55:07.075,2022-12-19,0B00180000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212192355e+16,58497189.0,9999-12-31 23:59:59,58497189.0, +20221220000000000000000000058498693,U,,1358;638070912043475330;20220828031015484892|00000041.711e9f3e.00000001.0000.02.0000:229878.448050.16,UPDATE,46001F00000000000000000000000000,2022-12-20 00:00:00,1671498000000.0,ab:1,"0 0 * * * ?",6603.0,"0 0 * * * ?",2.0,1.0,U,2022-12-19 19:00:00,2022-12-19 19:00:00,2022-12-19 19:00:09.676,2022-12-19,46001F0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.022122e+16,58498693.0,9999-12-31 23:59:59,58498693.0, +20221220000000000000000000058498693,U,,1358;638070912043475330;20220828031015484892|00000041.711e9f3e.00000001.0000.02.0000:229878.448050.16,UPDATE,46001F00000000000000000000000000,2022-12-20 00:00:00,1671498000000.0,ab:1,"0 0 * * * ?",6603.0,"0 0 * * * ?",2.0,1.0,U,2022-12-19 19:00:00,2022-12-19 19:00:00,2022-12-19 19:00:09.676,2022-12-19,46001F0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.022122e+16,58498693.0,9999-12-31 23:59:59,58498693.0, +20221220000500000000000000058500317,U,,1358;638070915019186990;20220828031015484892|00000041.7120cfec.00000001.0000.02.0000:229879.617298.16,UPDATE,06002000000000000000000000000000,2022-12-20 00:05:00,1671495300000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39525.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 19:05:00,2022-12-19 19:05:00,2022-12-19 19:05:07.091,2022-12-19,0600200000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212200005e+16,58500317.0,9999-12-31 23:59:59,58500317.0, +20221220000500000000000000058500317,U,,1358;638070915019186990;20220828031015484892|00000041.7120cfec.00000001.0000.02.0000:229879.617298.16,UPDATE,06002000000000000000000000000000,2022-12-20 00:05:00,1671495300000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39525.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 19:05:00,2022-12-19 19:05:00,2022-12-19 19:05:07.091,2022-12-19,0600200000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212200005e+16,58500317.0,9999-12-31 23:59:59,58500317.0, +20221220001500000000000000058502425,U,,1358;638070921030448180;20220828031015484892|00000041.71248b01.00000001.0000.02.0000:229882.326719.16,UPDATE,5C000D00000000000000000000000000,2022-12-20 00:15:00,1671495900000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39526.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 19:15:00,2022-12-19 19:15:00,2022-12-19 19:15:08.296,2022-12-19,5C000D0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212200015e+16,58502425.0,9999-12-31 23:59:59,58502425.0, +20221220001500000000000000058502425,U,,1358;638070921030448180;20220828031015484892|00000041.71248b01.00000001.0000.02.0000:229882.326719.16,UPDATE,5C000D00000000000000000000000000,2022-12-20 00:15:00,1671495900000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39526.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 19:15:00,2022-12-19 19:15:00,2022-12-19 19:15:08.296,2022-12-19,5C000D0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212200015e+16,58502425.0,9999-12-31 23:59:59,58502425.0, +20221220002500000000000000058504745,U,,1358;638070927012801740;20220828031015484892|00000041.71285eb3.00000001.0000.02.0000:229884.391207.16,UPDATE,7C000000000000000000000000000000,2022-12-20 00:25:00,1671496500000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39527.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 19:25:00,2022-12-19 19:25:00,2022-12-19 19:25:06.386,2022-12-19,7C00000000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212200025e+16,58504745.0,9999-12-31 23:59:59,58504745.0, +20221220002500000000000000058504745,U,,1358;638070927012801740;20220828031015484892|00000041.71285eb3.00000001.0000.02.0000:229884.391207.16,UPDATE,7C000000000000000000000000000000,2022-12-20 00:25:00,1671496500000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39527.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 19:25:00,2022-12-19 19:25:00,2022-12-19 19:25:06.386,2022-12-19,7C00000000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212200025e+16,58504745.0,9999-12-31 23:59:59,58504745.0, +20221220003500000000000000058507169,U,,1358;638070933013309810;20220828031015484892|00000041.712b8eca.00000001.0001.02.0000:229886.337760.16,UPDATE,1A001C00000000000000000000000000,2022-12-20 00:35:00,1671497100000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39528.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 19:35:00,2022-12-19 19:35:00,2022-12-19 19:35:07.747,2022-12-19,1A001C0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212200035e+16,58507169.0,9999-12-31 23:59:59,58507169.0, +20221220003500000000000000058507169,U,,1358;638070933013309810;20220828031015484892|00000041.712b8eca.00000001.0001.02.0000:229886.337760.16,UPDATE,1A001C00000000000000000000000000,2022-12-20 00:35:00,1671497100000.0,ab:8,"0 5,15,25,35,45,55 * * * ?",39528.0,"0 5,15,25,35,45,55 * * * ?",27.0,8.0,U,2022-12-19 19:35:00,2022-12-19 19:35:00,2022-12-19 19:35:07.747,2022-12-19,1A001C0000000000 ,PM_CL_CONTACTCENTER,PM_CL_CONTACTCENTER,2.02212200035e+16,58507169.0,9999-12-31 23:59:59,58507169.0, diff --git a/work/recovery-ui/Dockerfile b/work/recovery-ui/Dockerfile new file mode 100644 index 0000000..24f6f11 --- /dev/null +++ b/work/recovery-ui/Dockerfile @@ -0,0 +1,26 @@ +FROM fedora:36 +MAINTAINER Wendell Jones + +RUN echo 'defaultyes=True' >> /etc/dnf/dnf.conf +RUN echo 'vm.overcommit_memory = 1' >> sysctl.conf +RUN echo '127.0.0.1 localhost.localdomain localhost' >> /etc/hosts +RUN dnf update && dnf -y --assumeyes groupinstall 'Development Tools' +RUN dnf install -y gcc.x86_64 libgcc-12.0.1-0.16.fc36.x86_64 gcc-c++.x86_64 gcc-c++-x86_64-linux-gnu.x86_64 +RUN dnf install -y libarrow libarrow-devel.x86_64 libarrow-dataset-devel.x86_64 libarrow-dataset-glib-devel.x86_64 parquet-libs.x86_64 parquet-libs-devel.x86_64 parquet-glib-devel.x86_64 parquet-glib-libs.x86_64 # For C++ +RUN dnf install -y python3.12.x86_64 python3.12-devel.x86_64 python3-pip.noarch cmake cmake.x86_64 cmake-data.noarch python3-pyarrow.x86_64 python3-pyarrow-devel.x86_64 # For Apache Parquet GLib (C) + +ENV INSTALL_PATH /recovery +RUN mkdir -p $INSTALL_PATH + +WORKDIR $INSTALL_PATH + +COPY requirements.txt requirements.txt +RUN pip install --upgrade pip +RUN pip install arrow +RUN pip install -r requirements.txt +RUN pip install snowflake-connector-python + +COPY . . +#RUN pip install --editable . + +CMD gunicorn -b 0.0.0.0:8181 --workers 10 --timeout 900 --access-logfile - "recovery.app:create_app()" diff --git a/work/recovery-ui/__init__.py b/work/recovery-ui/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/work/recovery-ui/config/__init__.py b/work/recovery-ui/config/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/work/recovery-ui/config/__pycache__/__init__.cpython-310.pyc b/work/recovery-ui/config/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000..f947854 Binary files /dev/null and b/work/recovery-ui/config/__pycache__/__init__.cpython-310.pyc differ diff --git a/work/recovery-ui/config/__pycache__/settings.cpython-310.pyc b/work/recovery-ui/config/__pycache__/settings.cpython-310.pyc new file mode 100644 index 0000000..1ecda12 Binary files /dev/null and b/work/recovery-ui/config/__pycache__/settings.cpython-310.pyc differ diff --git a/work/recovery-ui/config/settings.py b/work/recovery-ui/config/settings.py new file mode 100644 index 0000000..be0e9ee --- /dev/null +++ b/work/recovery-ui/config/settings.py @@ -0,0 +1,33 @@ +from datetime import timedelta + +DEBUG = True + +SERVER_NAME = '10.239.53.64:8181' +SECRET_KEY = 'insecurekeyfordev' + +# Flask-Mail. +MAIL_DEFAULT_SENDER = 'contact@local.host' +MAIL_SERVER = 'smtp.gmail.com' +MAIL_PORT = 587 +MAIL_USE_TLS = True +MAIL_USE_SSL = False +MAIL_USERNAME = 'you@example.com' +MAIL_PASSWORD = 'awesomepassword' + +# Celery. +# CELERY_BROKER_URL = 'redis://:devpassword@redis:6379/0' +# CELERY_RESULT_BACKEND = 'redis://:devpassword@redis:6379/0' +# CELERY_ACCEPT_CONTENT = ['json'] +# CELERY_TASK_SERIALIZER = 'json' +# CELERY_RESULT_SERIALIZER = 'json' +# CELERY_REDIS_MAX_CONNECTIONS = 5 + +# SQLAlchemy. +db_uri = 'postgresql://postgres:Optimus0329@postgres:5432/testdb' +SQLALCHEMY_DATABASE_URI = db_uri +SQLALCHEMY_TRACK_MODIFICATIONS = False + +# User. +SEED_ADMIN_EMAIL = 'dev@local.host' +SEED_ADMIN_PASSWORD = 'devpassword' +REMEMBER_COOKIE_DURATION = timedelta(days=90) diff --git a/work/recovery-ui/docker-compose.yml b/work/recovery-ui/docker-compose.yml new file mode 100644 index 0000000..7bbaa61 --- /dev/null +++ b/work/recovery-ui/docker-compose.yml @@ -0,0 +1,64 @@ +version: '2' + +services: + postgres: + image: 'postgres:15.1' + env_file: + - '.env' + volumes: + - './pgdata:/var/lib/postgresql/data' + ports: + - '5433:5432' + + pgadmin4: + image: 'dpage/pgadmin4' + env_file: + - '.env' + ports: + - '800:80' + + redis-overcommit: + build: https://github.com/bkuhl/redis-overcommit-on-host.git + restart: 'no' + privileged: true + volumes: + - /proc/sys/vm:/mnt/vm + + redis: + image: 'redis:7.0.5' + command: redis-server /etc/redis/redis.conf + volumes: + - './redis/conf:/etc/redis' + - './redis/data:/var/lib/redis/data' + ports: + - '6379:6379' + depends_on: + - redis-overcommit + + website: + build: . + command: > + gunicorn -b 0.0.0.0:8181 + --access-logfile - + --workers 10 + --timeout 900 + --reload + "recovery.app:create_app()" + env_file: + - '.env' + volumes: + - '.:/recovery' + ports: + - '8181:8181' + +# celery: +# build: . +# command: celery worker -l info -A snakeeyes.blueprints.contact.tasks +# env_file: +# - '.env' +# volumes: +# - '.:/snakeeyes' + +volumes: + postgres: + redis: diff --git a/work/recovery-ui/recovery/__pycache__/app.cpython-310.pyc b/work/recovery-ui/recovery/__pycache__/app.cpython-310.pyc new file mode 100644 index 0000000..384b446 Binary files /dev/null and b/work/recovery-ui/recovery/__pycache__/app.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/__pycache__/extensions.cpython-310.pyc b/work/recovery-ui/recovery/__pycache__/extensions.cpython-310.pyc new file mode 100644 index 0000000..31f1587 Binary files /dev/null and b/work/recovery-ui/recovery/__pycache__/extensions.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/app.py b/work/recovery-ui/recovery/app.py new file mode 100644 index 0000000..d94a51f --- /dev/null +++ b/work/recovery-ui/recovery/app.py @@ -0,0 +1,124 @@ +#!/usr/bin/python3 +""" +Licensed 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. +""" +__author__ = "n0251281" + +import re +from datetime import datetime + +import pandas as pd +from flask import Flask, redirect, render_template, request, session +# from flask_migrate import Migrate +from flask_sqlalchemy import SQLAlchemy +# from flask_wtf import FlaskForm +# from wtforms import (SelectField, SelectMultipleField, StringField, +# SubmitField, widgets) +# from wtforms.fields.html5 import DateField +# from wtforms.validators import DataRequired + +from itsdangerous import URLSafeTimedSerializer +from recovery.blueprints.page import page +from recovery.blueprints.recover import recover +from flask_bootstrap import Bootstrap + +import redis +from flask_session import Session +from recovery.lib.common.connecter import Connecter +# from recovery.lib.fconfig import DevConfig +# from recovery.lib.function.Outputter import Output +# from recovery.lib.function.pgfunctions import execute_batch +# from recovery.lib.function.Writer import csvwrite +# from recovery.lib.sql.Queries import sfquery + +from recovery.extensions import ( + debug_toolbar, + #mail, + csrf, + #db, + #login_manager +) + +def create_app(settings_override=None): + """ + Create a Flask application using the app factory pattern. + + :param settings_override: Override settings + :return: Flask app + """ + + app = Flask(__name__, instance_relative_config=True) + + app.config.from_object('config.settings') + app.config.from_pyfile('settings.py', silent=True) + + app.config["SECRET_KEY"] = "dfjjflsfjlskjdk" + app.config["SESSION_COOKIE_DOMAIN"] = "localhost.localdomain" + app.config["SESSION_COOKIE_SECURE"] = False + app.config["SESSION_PERMANENT"] = False + app.config['SESSION_USE_SIGNER'] = True + app.config["SESSION_TYPE"] = "redis" + app.config['SESSION_REDIS'] = redis.from_url('redis://redis:6379') + app.config['DEBUG_TB_INTERCEPT_REDIRECTS'] = False + + app.register_blueprint(page) + app.register_blueprint(recover) + extensions(app) + Bootstrap(app) + Session(app) + #authentication(app, User) + connect = Connecter() + #conn = connect.connect(sfparams) + db = SQLAlchemy(app) + + #if settings_override: + # app.config.update(settings_override) + + + return app + +def extensions(app): + """ + Register 0 or more extensions (mutates the app passed in). + + :param app: Flask application instance + :return: None + """ + debug_toolbar.init_app(app) + #mail.init_app(app) + #csrf.init_app(app) + #db.init_app(app) + #login_manager.init_app(app) + + return None + +# def data_retrieve(queryvalue, tablename, columnlist, sessioninfo): +# (sfdatabase, schemaname, conn) = sfconnect(sessioninfo) +# cur = conn.cursor() +# queryname = sfquery.generate_query( +# queryvalue, +# schemaname, +# tablename, +# session["startdate"], +# session["enddate"], +# # session["use_daterange"], +# "1", +# sfdatabase, +# columnlist, +# ) +# cur.execute(queryname) +# rows = 0 +# cur.get_results_from_sfqid(cur.sfqid) +# results = cur.fetchall() +# return results + diff --git a/work/recovery-ui/recovery/blueprints/page/__init__.py b/work/recovery-ui/recovery/blueprints/page/__init__.py new file mode 100644 index 0000000..247fc9a --- /dev/null +++ b/work/recovery-ui/recovery/blueprints/page/__init__.py @@ -0,0 +1 @@ +from recovery.blueprints.page.views import page diff --git a/work/recovery-ui/recovery/blueprints/page/__pycache__/__init__.cpython-310.pyc b/work/recovery-ui/recovery/blueprints/page/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000..9f40f0e Binary files /dev/null and b/work/recovery-ui/recovery/blueprints/page/__pycache__/__init__.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/blueprints/page/__pycache__/views.cpython-310.pyc b/work/recovery-ui/recovery/blueprints/page/__pycache__/views.cpython-310.pyc new file mode 100644 index 0000000..2e608d4 Binary files /dev/null and b/work/recovery-ui/recovery/blueprints/page/__pycache__/views.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/blueprints/page/templates/index.html b/work/recovery-ui/recovery/blueprints/page/templates/index.html new file mode 100644 index 0000000..fb78bea --- /dev/null +++ b/work/recovery-ui/recovery/blueprints/page/templates/index.html @@ -0,0 +1,58 @@ +{% extends 'layouts/base.html' %} + +{% block content %} + + + + + + + +
+ +
+ + + +
+
+ +
+
+ +{% endblock %} \ No newline at end of file diff --git a/work/recovery-ui/recovery/blueprints/page/templates/service.html b/work/recovery-ui/recovery/blueprints/page/templates/service.html new file mode 100644 index 0000000..272c800 --- /dev/null +++ b/work/recovery-ui/recovery/blueprints/page/templates/service.html @@ -0,0 +1,183 @@ + + + + + + LMIG Qlik Replicate Utilities + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+ + + + +
+ +
+
+

+ © HTTP_509. All Rights Reserved. Designed by + HTML Codex +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/work/recovery-ui/recovery/blueprints/page/views.py b/work/recovery-ui/recovery/blueprints/page/views.py new file mode 100644 index 0000000..a7f6a10 --- /dev/null +++ b/work/recovery-ui/recovery/blueprints/page/views.py @@ -0,0 +1,18 @@ +from flask import Blueprint, render_template + +page = Blueprint('page', __name__, template_folder='templates') + + +@page.route('/') +def home(): + return render_template('index.html') + + +@page.route('/service') +def service(): + return render_template('service.html') + + +@page.route('/privacy') +def privacy(): + return render_template('privacy.html') diff --git a/work/recovery-ui/recovery/blueprints/recover/__init__.py b/work/recovery-ui/recovery/blueprints/recover/__init__.py new file mode 100644 index 0000000..d894164 --- /dev/null +++ b/work/recovery-ui/recovery/blueprints/recover/__init__.py @@ -0,0 +1 @@ +from recovery.blueprints.recover.views import recover diff --git a/work/recovery-ui/recovery/blueprints/recover/__pycache__/__init__.cpython-310.pyc b/work/recovery-ui/recovery/blueprints/recover/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000..5965e56 Binary files /dev/null and b/work/recovery-ui/recovery/blueprints/recover/__pycache__/__init__.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/blueprints/recover/__pycache__/views.cpython-310.pyc b/work/recovery-ui/recovery/blueprints/recover/__pycache__/views.cpython-310.pyc new file mode 100644 index 0000000..b4259d1 Binary files /dev/null and b/work/recovery-ui/recovery/blueprints/recover/__pycache__/views.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/blueprints/recover/templates/recover/date.html b/work/recovery-ui/recovery/blueprints/recover/templates/recover/date.html new file mode 100644 index 0000000..6f95858 --- /dev/null +++ b/work/recovery-ui/recovery/blueprints/recover/templates/recover/date.html @@ -0,0 +1,94 @@ +{% extends 'base.html' %} + +{% block content %} + + + + + + + + +
+
+
+
+
+

+

+
+ {{ form.csrt_token }} + {{ form.startdate.label }}: {{ form.startdate.data }} {{form.hidden_tag() }} + {{ form.enddate.label }}: {{ form.enddate.data }} {{form.hidden_tag() }} +

Select source database schema to copy from:

+ +

Select target database schema to copy to:

+ +
+
+

{{ form.submit() }}

+
+
+
+ + + +
+

+ © HTTP_509. All Rights Reserved. Designed by + HTML Codex +

+
+ + + + + + + + + + + + + + + + + + + + + + + +{% endblock %} \ No newline at end of file diff --git a/work/recovery-ui/recovery/blueprints/recover/templates/recover/daterange.html b/work/recovery-ui/recovery/blueprints/recover/templates/recover/daterange.html new file mode 100644 index 0000000..6b7e1fd --- /dev/null +++ b/work/recovery-ui/recovery/blueprints/recover/templates/recover/daterange.html @@ -0,0 +1,36 @@ +{% extends 'layouts/base.html' %} + + +{% block title %}Daterange page{% endblock %} + +{%block head %} +{{ super() }} + +{% endblock %} +{% block basecontent %} + {% block content %} +
Select date range for data recovery: +
+
+
+ {{form.startdate}}
+
+ {{form.enddate}}

+ {{ form.submit() }} +
+ {% endblock %} + + {% block scripts %} + {{ super() }} + + + + + {% endblock %} +{% endblock %} \ No newline at end of file diff --git a/work/recovery-ui/recovery/blueprints/recover/templates/recover/result.html b/work/recovery-ui/recovery/blueprints/recover/templates/recover/result.html new file mode 100644 index 0000000..5753522 --- /dev/null +++ b/work/recovery-ui/recovery/blueprints/recover/templates/recover/result.html @@ -0,0 +1,78 @@ +{% extends 'layouts/base.html' %} + +{% block content %} + + + + + + + + +
+
+
+
+
+

Start Date: {{ session['startdate'] }} - End Date: {{ session['enddate'] }}

+

Sending Schema: {{ session["fromschema"] }}

+

Receiving Schema: {{ session["toschema"] }}

+

+
    + {%for result in results %} +
  1. {{ result }}
  2. + {% endfor %} + +
+
+
+ + + +
+

+ © HTTP_509. All Rights Reserved. Designed by + HTML Codex +

+
+ + + + + + + + + + + + + + + + + + + + + + + +{% endblock %} \ No newline at end of file diff --git a/work/recovery-ui/recovery/blueprints/recover/templates/recover/schemas.html b/work/recovery-ui/recovery/blueprints/recover/templates/recover/schemas.html new file mode 100644 index 0000000..039f7b0 --- /dev/null +++ b/work/recovery-ui/recovery/blueprints/recover/templates/recover/schemas.html @@ -0,0 +1,40 @@ +{% extends 'layouts/base.html' %} + +{% block content %} + + +
+
+
+
+
+ Start Date and Time: {{ session.startdate }} {{form.hidden_tag() }} + End Date and Time: {{ session.enddate }} {{form.hidden_tag() }} +
+
+
+ +

+
+ +

+ {{ form.submit() }} +
+
+
+
+
+
+ + +{% endblock %} \ No newline at end of file diff --git a/work/recovery-ui/recovery/blueprints/recover/templates/recover/sfexec.html b/work/recovery-ui/recovery/blueprints/recover/templates/recover/sfexec.html new file mode 100644 index 0000000..d982b13 --- /dev/null +++ b/work/recovery-ui/recovery/blueprints/recover/templates/recover/sfexec.html @@ -0,0 +1,50 @@ +{% extends 'layouts/base.html' %} + +{% block content %} + + +
+
+
+
+
+

Recovered missing data using the following parameters:


+ Start Date: {{ session['startdate'] }}
+ End Date: {{ session['enddate'] }}
+ From Schema: {{ session['source'] }}
+ To Schema: {{ session['target'] }}

+ Received {{ session['from_rows'] }} from SOURCE
+ Received {{ session['to_rows'] }} from TARGET
+ Table(s) successfully processed:
+
    + {% for minuscount in minuscountlist %} +
  • {{ minuscount['actualtable'] }}: {{ minuscount['rowcount'] }} Rows added to target schema
  • + {% endfor %} +
+ {% if failed_tables|length > 1 %} + Unable to process data from the following table(s). Manual review of CSV files needed to resolve the + issue:
+
    + {% for tablename in failed_tables %} +
  • {{ tablename }}
  • + {% endfor %} +
  • +
+ {% endif %} + {% if mismatchlist|length >= 1 %} + Warning:
+
    + {% for mismatch in mismatchlist %} +
  • Detected count discrepancy for {{ mismatch['actualtable'] }} while processing data:
    + (Sending Table) {{ mismatch['from'] }}: {{ mismatch['fromcount'] }} Rows
    + (Receiving Table) {{ mismatch['to'] }}: {{ mismatch['tocount'] }} Rows
    + Further investigation may be required as we expected the source table to have more rows than the target
    +
  • + {% endfor %} +
+ {% endif %} +
+
+ + +{% endblock %} \ No newline at end of file diff --git a/work/recovery-ui/recovery/blueprints/recover/templates/recover/submit.html b/work/recovery-ui/recovery/blueprints/recover/templates/recover/submit.html new file mode 100644 index 0000000..23bdafa --- /dev/null +++ b/work/recovery-ui/recovery/blueprints/recover/templates/recover/submit.html @@ -0,0 +1,28 @@ +{% extends 'layouts/base.html' %} + +{% block content %} + + +
+
+
+
+
+
+ Start Date and Time: {{ session.startdate }} {{ form.hidden_tag() }}
+ End Date and Time: {{ session.enddate }} {{ form.hidden_tag() }}
+ Source Schema: {{ session.source }} {{ form.hidden_tag() }}
+ Target Schema: {{ session.target }} {{ form.hidden_tag() }}
+ Table(s) to be examined:
+
    + {% for tablename in session.tablelist %} +
  • {{ tablename }}
  • + {% endfor %} +
+

{{ form.submit() }}

+
+
+
+ + +{% endblock %} \ No newline at end of file diff --git a/work/recovery-ui/recovery/blueprints/recover/templates/recover/tables.html b/work/recovery-ui/recovery/blueprints/recover/templates/recover/tables.html new file mode 100644 index 0000000..236d7f2 --- /dev/null +++ b/work/recovery-ui/recovery/blueprints/recover/templates/recover/tables.html @@ -0,0 +1,31 @@ +{% extends 'layouts/base.html' %} + +{% block content %} + + +
+
+
+
+
+
+ Start Date and Time: {{ session.startdate }}
+ End Date and Time: {{ session.enddate }}
+ Source Schema: {{ session.source }}
+ Target Schema: {{ session.target }}
+

Select Table(s) to compare:

+

+ +

{{ form.submit() }}

+
{{ tablecount }} Tables Listed
+
+
+
+ + +{% endblock %} \ No newline at end of file diff --git a/work/recovery-ui/recovery/blueprints/recover/views.py b/work/recovery-ui/recovery/blueprints/recover/views.py new file mode 100644 index 0000000..6e6eba1 --- /dev/null +++ b/work/recovery-ui/recovery/blueprints/recover/views.py @@ -0,0 +1,311 @@ +import os +from flask import Blueprint, render_template, render_template_string, redirect, request, session +from flask_wtf import FlaskForm +from wtforms.fields import DateTimeField, SubmitField, StringField, SelectMultipleField +from datetime import datetime +from recovery.lib.common.connecter import Connecter +from recovery.lib.function.Outputter import Output +from recovery.lib.function.Writer import csvwrite +import pandas as pd + +class MyForm(FlaskForm): + startdate = DateTimeField(id='startdate',format='%Y-%m-%d %H:%M:%S') + enddate = DateTimeField(id='enddate', format='%Y-%m-%d %H:%M:%S') + submit = SubmitField("Submit") + +class SchemaForm(FlaskForm): + source = StringField("source") + target = StringField("target") + submit = SubmitField("Submit") + +class TableForm(FlaskForm): + startdate = DateTimeField("Start Date", format='%Y-%m-%d %H:%M:%S') + enddate = DateTimeField("End Date", format='%Y-%m-%d %H:%M:%S') + source = StringField("source") + target = StringField("target") + tables = SelectMultipleField("tables") + submit = SubmitField("Submit") + +class SubmitForm(FlaskForm): + startdate = DateTimeField("Start Date", format='%Y-%m-%d %H:%M:%S') + enddate = DateTimeField("End Date", format='%Y-%m-%d %H:%M:%S') + source = StringField("source") + target = StringField("target") + tables = SelectMultipleField("tables") + submit = SubmitField("Submit") + +recover = Blueprint('recover', __name__, template_folder='templates') + +@recover.route('/daterange', methods=["GET", "POST"]) +def daterange(): + session.clear() + form = MyForm() + if request.method == "POST": + tempdate = datetime.strptime(request.form['startdate'], '%m/%d/%Y %I:%M %p') + timestamp = datetime.timestamp(tempdate) + startdate = datetime.fromtimestamp(timestamp)#.strftime('%Y-%m-%d %H:%M:%S') + session["startdate"] = startdate + tempdate = datetime.strptime(request.form['enddate'], '%m/%d/%Y %I:%M %p') + timestamp = datetime.timestamp(tempdate) + print(timestamp) + enddate = datetime.fromtimestamp(timestamp)#.strftime('%Y-%m-%d %H:%M:%S') + print(enddate) + session["enddate"] = enddate + return redirect("schemas") + return render_template('recover/daterange.html', form=form) + +@recover.route('/schemas', methods=["GET", "POST"]) +def schemas(): + form = SchemaForm() + connector = Connecter() + getschemas = "SELECT dbname,schemaname,dbuser,dbpassword,sfaccount,sfwarehouse FROM public.targets" + (pgconn,pgcur) = connector.open_pgsql('public') + pgcur.execute(getschemas) + schemarows = pgcur.fetchall() + if request.method == "POST": + sourcefield = request.form['source'].split(',') + session["source"] = sourcefield[0] + session["sourceuser"] = sourcefield[1] + session["sourcepassword"] = sourcefield[2] + session["sourceaccount"] = sourcefield[3] + session["sourcewarehouse"] = sourcefield[4] + targetfield = request.form['target'].split(',') + session["target"] = targetfield[0] + session["targetuser"] = targetfield[1] + session["targetpassword"] = targetfield[2] + session["targetaccount"] = targetfield[3] + session["targetwarehouse"] = targetfield[4] + return redirect("tables") + return render_template('recover/schemas.html', form=form, schemarows=schemarows) + + +@recover.route('/tables', methods=["GET", "POST"]) +def tables(): + form = TableForm() + connector = Connecter() + dbfield = session["source"].split('.') + session['sourcedb'] = dbfield[0] + session['sourceschema'] = dbfield[1] + gettables = f"select distinct(table_name) from information_schema.columns where table_schema = '{dbfield[1]}' order by table_name;" + session["sffrominfo"] = [ + session["sourceaccount"], + session["sourceuser"], + session["sourcepassword"], + session["sourcewarehouse"], + session['sourcedb'], + session['sourceschema'], + ] + (database, schema, conn) = connector.connect(session["sffrominfo"]) + cur = conn.cursor() + cur.execute(gettables) + cur.get_results_from_sfqid(cur.sfqid) + results = cur.fetchall() + tablecount = len(results) + if request.method == "POST": + session['tablelist'] = request.form.getlist('tables') + return redirect("verify") + return render_template('recover/tables.html', form=form, results=results, tablecount=tablecount) + +@recover.route('/verify') +def verify(): + form = SubmitForm() + if request.method == "POST": + return redirect('sfexec') + return render_template('recover/submit.html', form=form) + +@recover.route('/sfexec') +def sfexec(): + failed_tables = [] + discrepancylist = [] + mismatchlist = [] + minuscountlist = [] + outputter = Output() + writer = csvwrite() + fromdata = './recovery/data/from_data.csv' + #fromdata = fromdatafile.valuename + todata = './recovery/data/to_data.csv' + #todata = todatafile.valuename + recovereddata = './recovery/data/recovered_data.csv' + #recovereddata = recovereddatafile.valuename + table_ddl = [] + table_ddls = {} + connecter = Connecter() + dbfield = session["source"].split('.') + session["sffrominfo"] = [ + session["sourceaccount"], + session["sourceuser"], + session["sourcepassword"], + session["sourcewarehouse"], + session['sourcedb'], + session['sourceschema'], + ] + (fromdatabase, fromschema, fromconn) = connecter.connect(session["sffrominfo"]) + fromcur = fromconn.cursor() + + (pgconn, pgcur) = connecter.open_pgsql(session['sourceschema']) + + dbfield = session["target"].split('.') + session['targetdb'] = dbfield[0] + session['targetschema'] = session['sourceschema'] + session["sftoinfo"] = [ + session["targetaccount"], + session["targetuser"], + session["targetpassword"], + session["targetwarehouse"], + session['targetdb'], + session['targetschema'], + ] + (todatabase, toschema, toconn) = connecter.connect(session["sftoinfo"]) + tocur = toconn.cursor() + + for tablename in session["tablelist"]: + table_ddl.append( + [ + tablename, + fromdatabase + "_" + tablename, + todatabase + "_" + tablename, + ] + ) + for tablename in session['tablelist']: + get_ddl = f"SELECT get_ddl('TABLE','{tablename}');" + fromcur.execute(get_ddl) + fromcur.get_results_from_sfqid(fromcur.sfqid) + results = fromcur.fetchall() + + ( fromtable, + totable, + minustable, + recovertable, + ) = writer.create_tables( + pgconn, pgcur, fromconn, toconn, session['sourceschema'], tablename, results[0][0], session + ) + session['fromtable'] = fromtable + session['totable'] = totable + session['minustable'] = minustable + session['recovertable'] = recovertable + + columnfield = session['fromtable'].split('.') + tvar = session['exclude_list'].replace(',', "','") + excluded_columns = f"'{tvar}'" + get_columns = f"SELECT column_name FROM information_schema.columns WHERE table_schema = '{session['targetschema']}' AND table_name = '{columnfield[1].lower()}';" + get_datacolumns = f"SELECT column_name FROM information_schema.columns WHERE table_schema = '{session['targetschema']}' AND table_name = '{columnfield[1].lower()}' AND column_name NOT IN ({excluded_columns});" + + pgcur.execute(get_columns) + columnlist = [] + columnlistquery = pgcur.fetchall() + for row in columnlistquery: + columnlist.append(row[0]) + + session['all_columns'] = ",".join(columnlist) + pgcur.execute(get_datacolumns) + columnlist = [] + columnlistquery = pgcur.fetchall() + for row in columnlistquery: + columnlist.append(row[0]) + + session['data_columns'] = ",".join(columnlist) + + session['get_data'] = f" SELECT * FROM {tablename} WHERE ODS_EFF_ROW_DTM >= '{session['startdate']}' AND ODS_EFF_ROW_DTM <= '{session['enddate']}';" + fromcur.execute(session['get_data']) + fromcur.get_results_from_sfqid(fromcur.sfqid) + fromresults = fromcur.fetchall() + session['from_rows'] = len(fromresults) + if session['from_rows'] > 0: + valuelist = [] + for column in fromresults[0]: + valuelist.append('%s') + valueslist = ','.join(valuelist) + fromargs = ','.join(pgcur.mogrify(f"({valueslist})", i).decode('utf-8') + for i in fromresults) + pgcur.execute(f"INSERT INTO {fromtable} ({session['all_columns']}) VALUES {fromargs}") + else: + print("0 Rows received.") + pgconn.commit() + + tocur.execute(session['get_data']) + tocur.get_results_from_sfqid(tocur.sfqid) + toresults = tocur.fetchall() + session['to_rows'] = len(toresults) + toargs = ','.join(pgcur.mogrify(f"({valueslist})", i).decode('utf-8') + for i in toresults) + if len(toresults) > 0: + pgcur.execute(f"INSERT INTO {totable} ({session['all_columns']}) VALUES {toargs}") + else: + print("0 Rows received.") + pgconn.commit() + + session['minusquery'] = f"SELECT {session['data_columns']} FROM {fromtable} EXCEPT SELECT {session['data_columns']} FROM {totable};" + pgcur.execute(session['minusquery']) + minusresults = pgcur.fetchall() + session['minus_rows'] = len(minusresults) + if session['minus_rows'] > 0: + valuelist = [] + for column in minusresults[0]: + valuelist.append('%s') + valueslist = ','.join(valuelist) + minusargs = ','.join(pgcur.mogrify(f"({valueslist})", i).decode('utf-8') + for i in minusresults) + pgcur.execute(f"INSERT INTO {minustable} ({session['data_columns']}) VALUES {minusargs}") + pgconn.commit() + valuelist = [] + for column in fromresults[0]: + valuelist.append('%s') + valueslist = ','.join(valuelist) + whereclausecolumns = session['data_columns'].split(',') + whereclauselist = [] + for column_name in whereclausecolumns: + pgcur.execute(f"SELECT COUNT(*) FROM {minustable} WHERE {column_name} IS NULL;") + result = pgcur.fetchone() + if result[0] == 0: + whereclauselist.append(f"A.{column_name} = B.{column_name}") + recoverclause = " AND ".join(whereclauselist) + datacolumns = session['all_columns'].split(',') + selectcolumns = f"A.{',A.'.join(datacolumns)}" + recoveryquery = f"INSERT INTO {recovertable} ({session['all_columns']}) SELECT {selectcolumns} FROM {fromtable} A, {minustable} B WHERE {recoverclause};" + print(recoveryquery) + pgcur.execute(recoveryquery) + pgconn.commit() + #pgcur.execute(f'SELECT * from {recovertable}') + #recoverresults = pgcur.fetchall() + #session['recovered_rows'] = len(recoverresults) + #if session['recovered_rows'] > 0: + # resultdf = pd.DataFrame() + meta_columns = ['change_seq','change_oper','change_mask','stream_position','operation','transaction_id','timestamp'] + selectstatement = f'SELECT * from {recovertable}' + recover_query = pd.read_sql_query(selectstatement, pgconn) + resultdf = pd.DataFrame(recover_query) + resultdf.to_csv('results.csv', index=False) + recoveredcsv = open(f'{tablename}.csv', 'w') + resultcsv = open('results.csv', 'r') + for index, row in enumerate(resultcsv): + line = row.replace('UNKNOWN', '') + linefield = line.split(',') + for idx, fieldname in enumerate(linefield): + if "memory at" in fieldname: + linefield[idx] = '' + if index == 0: + for index1, lfield in enumerate(linefield): + if lfield in meta_columns: + newfield = f'"{lfield}"' + linefield[index1] = newfield + line = ",".join(linefield) + elif index > 0: + linefield[2] = '' + line = ",".join(linefield) + recoveredcsv.write(f'{line}') + resultcsv.close() + recoveredcsv.close() + os.unlink('results.csv') + try: + print("Transferring file.......") + tocur.execute(f"PUT file://{tablename}.csv @%{tablename} AUTO_COMPRESS=TRUE OVERWRITE=TRUE;") + except Exception as e: + print(e) + else: + print('Copying data.......') + tocur.execute(f"copy into {tablename} file_format = (type = csv field_delimiter = ',' skip_header = 1 error_on_column_count_mismatch=false) ENFORCE_LENGTH = FALSE;"); + else: + print('0 rows to process.') + pgconn.commit() + + return render_template('recover/sfexec.html') diff --git a/work/recovery-ui/recovery/data/logs/debug.log b/work/recovery-ui/recovery/data/logs/debug.log new file mode 100644 index 0000000..f3e15d2 --- /dev/null +++ b/work/recovery-ui/recovery/data/logs/debug.log @@ -0,0 +1,141032 @@ +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:17:30] "GET /daterange HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:17:30] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:17:30] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:17:30] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:17:30] "GET /static/css/style.css HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:17:30] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:17:30] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:17:31] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:17:31] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:17:31] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:17:31] "GET /js/main.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:17:31] "GET /favicon.ico HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:17:31] "GET /static/img/favicon.ico HTTP/1.1" 404 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\main.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:42] "GET /daterange HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:42] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:42] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:42] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:42] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:42] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:42] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:42] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:42] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:42] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:42] "GET /js/main.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:47] "GET /daterange HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:47] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:47] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:47] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:47] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:47] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:47] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:47] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:48] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:48] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 06:20:48] "GET /js/main.js HTTP/1.1" 404 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\main.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\main.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\main.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:12] "GET /daterange HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:13] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:13] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:13] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:13] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:13] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:13] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:13] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:13] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:13] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:13] "GET /js/main.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:13] "GET /favicon.ico HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:13] "GET /static/img/favicon.ico HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT targets.id AS targets_id, targets.targetname AS targets_targetname, targets.username AS targets_username, targets.password AS targets_password, targets.account AS targets_account, targets.warehouse AS targets_warehouse, targets."database" AS targets_database, targets.schemaname AS targets_schemaname +FROM targets +INFO:sqlalchemy.engine.Engine:[cached since 54.24s ago] () +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:28] "POST /schemas HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:29] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:29] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:29] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:29] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:29] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:29] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:29] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:29] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:29] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:29] "GET /js/main.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT targets.id AS targets_id, targets.targetname AS targets_targetname, targets.username AS targets_username, targets.password AS targets_password, targets.account AS targets_account, targets.warehouse AS targets_warehouse, targets."database" AS targets_database, targets.schemaname AS targets_schemaname +FROM targets +WHERE targets."database" = ? AND targets.schemaname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00226s] ('PL_PROD', 'PM_TRANS_CL_EPALARM_QLIK_CT_D', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT targets.id AS targets_id, targets.targetname AS targets_targetname, targets.username AS targets_username, targets.password AS targets_password, targets.account AS targets_account, targets.warehouse AS targets_warehouse, targets."database" AS targets_database, targets.schemaname AS targets_schemaname +FROM targets +WHERE targets."database" = ? AND targets.schemaname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.007813s ago] ('PL_QA', 'PM_TRANS_CL_EPALARM_QLIK_CT_D', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00888s] ('get_tablelist', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=4df04676-886b-4b85-8b46-72c16eb9cc94 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 00b95ac5-4469-4392-8aa9-a0bda56f6b85 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2354743845808 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2354743845808 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2354744276688 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2354744276688 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2354744276688 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2354744276688 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2354743845808 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2354743845808 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=4df04676-886b-4b85-8b46-72c16eb9cc94&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=00b95ac5-4469-4392-8aa9-a0bda56f6b85 HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select distinct(table_name) from information_schema.columns where table_schema =...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 2ad14634-87ba-4827-8a47-8298e5f8de10 +DEBUG:snowflake.connector.cursor:running query [select distinct(table_name) from information_schema.columns where table_schema =...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select distinct(table_name) from information_schema.columns where table_schema =...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 56984c8c-98e5-47e7-92c6-4d1589ac3b3f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2ad14634-87ba-4827-8a47-8298e5f8de10&request_guid=56984c8c-98e5-47e7-92c6-4d1589ac3b3f HTTP/1.1" 200 1942 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83248-0502-ae2c-1a4b-0303c40c603b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83248-0502-ae2c-1a4b-0303c40c603b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 15 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83248-0502-ae2c-1a4b-0303c40c603b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cdb35ea6-cb1c-4fab-b653-7038e3b63f65 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83248-0502-ae2c-1a4b-0303c40c603b?request_guid=cdb35ea6-cb1c-4fab-b653-7038e3b63f65 HTTP/1.1" 200 1862 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83248-0502-ae2c-1a4b-0303c40c603b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7184d7dd-864f-4c2c-a6cc-c4774cc7b476 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83248-0502-ae2c-1a4b-0303c40c603b?request_guid=7184d7dd-864f-4c2c-a6cc-c4774cc7b476 HTTP/1.1" 200 1862 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83248-0502-ae2c-1a4b-0303c40c603b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 15b26916-b419-4c43-a9cb-a8dbe0cf1efa +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83248-0502-ae2c-1a4b-0303c40c603b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83248-0502-ae2c-1a4b-0303c40c603b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 83b8bfdd-d697-45d4-ba54-1256c1c60ea8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=15b26916-b419-4c43-a9cb-a8dbe0cf1efa&request_guid=83b8bfdd-d697-45d4-ba54-1256c1c60ea8 HTTP/1.1" 200 1946 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83248-0502-ae87-1a4b-0303c40c55d7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83248-0502-ae87-1a4b-0303c40c55d7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 15 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:53] "POST /tables HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:53] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:53] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:53] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:53] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:53] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:53] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:53] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:53] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:54] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:36:54] "GET /js/main.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:37:01] "POST /submit HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:37:01] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:37:01] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:37:01] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:37:01] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:37:01] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:37:01] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:37:01] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:37:02] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:37:02] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:37:02] "GET /js/main.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:37:05] "GET /sfexec?csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:37:05] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:37:05] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:37:05] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\sfconnect\\Connecter.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:38:14] "GET /sfexec?csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:38:14] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:38:15] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:38:15] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\sfconnect\\Connecter.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:40:14] "GET /sfexec?csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:40:14] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:40:14] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:40:15] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\common\\connecter.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\main.py', reloading +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:42:30] "GET /sfexec?csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:42:30] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:42:30] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:42:31] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 19.64s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 19.65s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 19.65s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=0f089ca0-5906-410f-95f5-17de3df3c96d +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ea124a05-c869-4bfc-8f7b-02174c8a706c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2040112603600 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2040112603600 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2040113001712 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2040113001712 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2040113001712 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2040113001712 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2040112603600 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2040112603600 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=0f089ca0-5906-410f-95f5-17de3df3c96d&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=ea124a05-c869-4bfc-8f7b-02174c8a706c HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=25889425-d654-4311-aa13-7079fbea778f +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0dd52828-7031-4629-8837-c2f2066eb21f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=25889425-d654-4311-aa13-7079fbea778f&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=0dd52828-7031-4629-8837-c2f2066eb21f HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00429s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: e97412bb-c9f6-4408-bc0c-9026c6c21858 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9313d7ae-e7bf-41b2-8dd6-123504cc0b19 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e97412bb-c9f6-4408-bc0c-9026c6c21858&request_guid=9313d7ae-e7bf-41b2-8dd6-123504cc0b19 HTTP/1.1" 200 2767 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8324f-0502-ae7a-1a4b-0303c40e0a27 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8324f-0502-ae7a-1a4b-0303c40e0a27 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8324f-0502-ae7a-1a4b-0303c40e0a27' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 21ae123b-3af9-4443-9f5b-427d17bf52f3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8324f-0502-ae7a-1a4b-0303c40e0a27?request_guid=21ae123b-3af9-4443-9f5b-427d17bf52f3 HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8324f-0502-ae7a-1a4b-0303c40e0a27' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7e402c92-2ae6-48c8-b52d-2b421ce186b1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8324f-0502-ae7a-1a4b-0303c40e0a27?request_guid=7e402c92-2ae6-48c8-b52d-2b421ce186b1 HTTP/1.1" 200 1852 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8324f-0502-ae7a-1a4b-0303c40e0a27'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 7c3bd009-05a9-442e-8554-af90af145d70 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8324f-0502-ae7a-1a4b-0303c40e0a27'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8324f-0502-ae7a-1a4b-0303c40e0a27'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 70d0bfd5-8258-411d-bca5-3dd8d32fa6b5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7c3bd009-05a9-442e-8554-af90af145d70&request_guid=70d0bfd5-8258-411d-bca5-3dd8d32fa6b5 HTTP/1.1" 200 2762 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8324f-0502-ae2c-1a4b-0303c40df8e7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8324f-0502-ae2c-1a4b-0303c40df8e7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 1c6168e6-353d-4efd-b6af-70e621aba991 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 30cc5b52-068a-43d6-a7d4-e504b743c6f9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1c6168e6-353d-4efd-b6af-70e621aba991&request_guid=30cc5b52-068a-43d6-a7d4-e504b743c6f9 HTTP/1.1" 200 2504 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8324f-0502-ae2c-1a4b-0303c40df8f3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8324f-0502-ae2c-1a4b-0303c40df8f3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8324f-0502-ae2c-1a4b-0303c40df8f3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 88a86c99-2696-47bb-b56e-dbaa98446d6e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8324f-0502-ae2c-1a4b-0303c40df8f3?request_guid=88a86c99-2696-47bb-b56e-dbaa98446d6e HTTP/1.1" 200 2166 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8324f-0502-ae2c-1a4b-0303c40df8f3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b369f191-081f-4f66-b373-7919d48fea10 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8324f-0502-ae2c-1a4b-0303c40df8f3?request_guid=b369f191-081f-4f66-b373-7919d48fea10 HTTP/1.1" 200 2166 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8324f-0502-ae2c-1a4b-0303c40df8f3'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 531b6477-113b-4126-98f2-1d7804e9d18d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8324f-0502-ae2c-1a4b-0303c40df8f3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8324f-0502-ae2c-1a4b-0303c40df8f3'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e8f8df72-5c54-40fc-bc21-3d68ce3d4103 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=531b6477-113b-4126-98f2-1d7804e9d18d&request_guid=e8f8df72-5c54-40fc-bc21-3d68ce3d4103 HTTP/1.1" 200 2504 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8324f-0502-ae7f-1a4b-0303c40e25eb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8324f-0502-ae7f-1a4b-0303c40e25eb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: a4fd962e-c036-443c-bee3-5c8ff5cbcf12 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 69e0445e-7e54-4ee2-be1b-aadf911fef04 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a4fd962e-c036-443c-bee3-5c8ff5cbcf12&request_guid=69e0445e-7e54-4ee2-be1b-aadf911fef04 HTTP/1.1" 200 2816 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8324f-0502-ae7f-1a4b-0303c40e2607 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8324f-0502-ae7f-1a4b-0303c40e2607 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8324f-0502-ae7f-1a4b-0303c40e2607' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 967575ed-caa9-4bd3-acb8-d16dd307db2a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8324f-0502-ae7f-1a4b-0303c40e2607?request_guid=967575ed-caa9-4bd3-acb8-d16dd307db2a HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8324f-0502-ae7f-1a4b-0303c40e2607' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fddf4357-5d7a-4622-a971-ae723e72bccc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8324f-0502-ae7f-1a4b-0303c40e2607?request_guid=fddf4357-5d7a-4622-a971-ae723e72bccc HTTP/1.1" 200 1677 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8324f-0502-ae7f-1a4b-0303c40e2607'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: d313fc37-58f3-4649-bb18-f504f0906e04 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8324f-0502-ae7f-1a4b-0303c40e2607'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8324f-0502-ae7f-1a4b-0303c40e2607'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 31d053d5-a8b8-428c-a29b-03319f3d8610 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d313fc37-58f3-4649-bb18-f504f0906e04&request_guid=31d053d5-a8b8-428c-a29b-03319f3d8610 HTTP/1.1" 200 2818 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8324f-0502-ae87-1a4b-0303c40e3527 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8324f-0502-ae87-1a4b-0303c40e3527 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:43:15] "GET /sfexec?csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:43:15] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:43:15] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:43:16] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 34.96s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 34.97s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 34.97s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=8663487f-27ce-4724-ad29-d3edde949e79 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 81cca4e0-f260-4f8d-91d5-443ab76fc1ab +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1951307857200 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1951307857200 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1951308255376 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1951308255376 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1951308255376 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1951308255376 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1951307857200 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1951307857200 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=8663487f-27ce-4724-ad29-d3edde949e79&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=81cca4e0-f260-4f8d-91d5-443ab76fc1ab HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=8908d6b4-dbe5-4c8c-9477-6a63d0b76f8b +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e1065841-df4b-4b8b-9ad0-323344897cd8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=8908d6b4-dbe5-4c8c-9477-6a63d0b76f8b&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=e1065841-df4b-4b8b-9ad0-323344897cd8 HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00530s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 8deaa020-c45c-464f-a06b-4fd2c72bab42 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1d5fbb42-40a3-4a43-9d61-aeb7de126290 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=8deaa020-c45c-464f-a06b-4fd2c72bab42&request_guid=1d5fbb42-40a3-4a43-9d61-aeb7de126290 HTTP/1.1" 200 2767 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83251-0502-ae87-1a4b-0303c40ed2c7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83251-0502-ae87-1a4b-0303c40ed2c7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83251-0502-ae87-1a4b-0303c40ed2c7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 76ac9188-6ac4-4158-bbc3-a7da6d1b9494 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83251-0502-ae87-1a4b-0303c40ed2c7?request_guid=76ac9188-6ac4-4158-bbc3-a7da6d1b9494 HTTP/1.1" 200 1858 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83251-0502-ae87-1a4b-0303c40ed2c7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 344c8b3d-b69a-4212-81ec-1820ad3cb519 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83251-0502-ae87-1a4b-0303c40ed2c7?request_guid=344c8b3d-b69a-4212-81ec-1820ad3cb519 HTTP/1.1" 200 1858 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83251-0502-ae87-1a4b-0303c40ed2c7'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 26136835-f3df-4a38-bde3-622419fe31c7 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83251-0502-ae87-1a4b-0303c40ed2c7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83251-0502-ae87-1a4b-0303c40ed2c7'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: eb2371e3-5261-42ba-a7e4-84f77c5724ff +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=26136835-f3df-4a38-bde3-622419fe31c7&request_guid=eb2371e3-5261-42ba-a7e4-84f77c5724ff HTTP/1.1" 200 2762 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83251-0502-ae2c-1a4b-0303c40eba0b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83251-0502-ae2c-1a4b-0303c40eba0b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: aa05e561-4421-4556-9739-799b5374e56b +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a7d1ec68-5432-4600-bf67-0416fa851893 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=aa05e561-4421-4556-9739-799b5374e56b&request_guid=a7d1ec68-5432-4600-bf67-0416fa851893 HTTP/1.1" 200 2510 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83251-0502-ae87-1a4b-0303c40ed353 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83251-0502-ae87-1a4b-0303c40ed353 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83251-0502-ae87-1a4b-0303c40ed353' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c66b2187-0911-43f5-93ba-73f5020f2767 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83251-0502-ae87-1a4b-0303c40ed353?request_guid=c66b2187-0911-43f5-93ba-73f5020f2767 HTTP/1.1" 200 2173 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83251-0502-ae87-1a4b-0303c40ed353' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f09531ae-1e11-421a-b637-92d8561e0ed1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83251-0502-ae87-1a4b-0303c40ed353?request_guid=f09531ae-1e11-421a-b637-92d8561e0ed1 HTTP/1.1" 200 2176 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83251-0502-ae87-1a4b-0303c40ed353'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 966af691-dc49-48d5-8015-f4ec58b6b163 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83251-0502-ae87-1a4b-0303c40ed353'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83251-0502-ae87-1a4b-0303c40ed353'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6195ea3c-add9-4088-8d25-c369ec796f8a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=966af691-dc49-48d5-8015-f4ec58b6b163&request_guid=6195ea3c-add9-4088-8d25-c369ec796f8a HTTP/1.1" 200 2502 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83251-0502-ae2c-1a4b-0303c40ebaeb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83251-0502-ae2c-1a4b-0303c40ebaeb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 3d0b90c8-0dd8-428b-b7ac-1ab557812ac5 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6168e70b-18f0-47f0-9294-a18c38ef1178 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3d0b90c8-0dd8-428b-b7ac-1ab557812ac5&request_guid=6168e70b-18f0-47f0-9294-a18c38ef1178 HTTP/1.1" 200 2810 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83251-0502-ae2c-1a4b-0303c40ebaf3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83251-0502-ae2c-1a4b-0303c40ebaf3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83251-0502-ae2c-1a4b-0303c40ebaf3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 01fdd005-7eea-44f2-8712-e668baf6fd07 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83251-0502-ae2c-1a4b-0303c40ebaf3?request_guid=01fdd005-7eea-44f2-8712-e668baf6fd07 HTTP/1.1" 200 1672 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83251-0502-ae2c-1a4b-0303c40ebaf3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b3fdb476-af50-42c7-9e21-7a0453b015f0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83251-0502-ae2c-1a4b-0303c40ebaf3?request_guid=b3fdb476-af50-42c7-9e21-7a0453b015f0 HTTP/1.1" 200 1672 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83251-0502-ae2c-1a4b-0303c40ebaf3'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 041dcccd-c05a-494c-8777-c34445c9fb5d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83251-0502-ae2c-1a4b-0303c40ebaf3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83251-0502-ae2c-1a4b-0303c40ebaf3'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ba35ef81-10ca-49be-a307-ad836ee332d1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=041dcccd-c05a-494c-8777-c34445c9fb5d&request_guid=ba35ef81-10ca-49be-a307-ad836ee332d1 HTTP/1.1" 200 2812 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83251-0502-ae7a-1a4b-0303c40e9d9b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83251-0502-ae7a-1a4b-0303c40e9d9b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3399s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3446s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3498s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=66b8be97-ea3a-4717-a91d-2f54c5f7bec4 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0e41ed2d-3348-41ed-bde9-fa8b2df9b959 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2455597245120 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2455597245120 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2455597643232 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2455597643232 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2455597643232 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2455597643232 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2455597245120 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2455597245120 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=66b8be97-ea3a-4717-a91d-2f54c5f7bec4&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=0e41ed2d-3348-41ed-bde9-fa8b2df9b959 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=1d8fd312-3210-4188-a1e6-79a394ded8b6 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7091ec2a-fd68-46f3-b35e-35c48f52ea7d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=1d8fd312-3210-4188-a1e6-79a394ded8b6&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=7091ec2a-fd68-46f3-b35e-35c48f52ea7d HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00438s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 47424ce5-8f03-42f3-a173-a676cd0d96ec +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e0608725-6e5e-494c-9253-9302e44a13cb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=47424ce5-8f03-42f3-a173-a676cd0d96ec&request_guid=e0608725-6e5e-494c-9253-9302e44a13cb HTTP/1.1" 200 2768 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83253-0502-ae7f-1a4b-0303c40f6973 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83253-0502-ae7f-1a4b-0303c40f6973 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83253-0502-ae7f-1a4b-0303c40f6973' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2071882c-95e3-48f0-bba6-22fc880f33cd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83253-0502-ae7f-1a4b-0303c40f6973?request_guid=2071882c-95e3-48f0-bba6-22fc880f33cd HTTP/1.1" 200 1852 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83253-0502-ae7f-1a4b-0303c40f6973' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 18543e54-5732-4ab6-a25b-7d758c5d32a0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83253-0502-ae7f-1a4b-0303c40f6973?request_guid=18543e54-5732-4ab6-a25b-7d758c5d32a0 HTTP/1.1" 200 1852 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83253-0502-ae7f-1a4b-0303c40f6973'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 729ee356-4fdd-480e-916c-e0fe8e6c67ef +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83253-0502-ae7f-1a4b-0303c40f6973'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83253-0502-ae7f-1a4b-0303c40f6973'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1827b8db-0438-44d8-b4b3-4ac9fc418973 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=729ee356-4fdd-480e-916c-e0fe8e6c67ef&request_guid=1827b8db-0438-44d8-b4b3-4ac9fc418973 HTTP/1.1" 200 2769 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83253-0502-ae87-1a4b-0303c40f7273 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83253-0502-ae87-1a4b-0303c40f7273 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 0997b366-6d51-43b0-a406-2aaac8916453 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3413a403-56b4-4d5c-ba96-e34a08dff3f9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0997b366-6d51-43b0-a406-2aaac8916453&request_guid=3413a403-56b4-4d5c-ba96-e34a08dff3f9 HTTP/1.1" 200 2508 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83253-0502-ae7f-1a4b-0303c40f69b3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83253-0502-ae7f-1a4b-0303c40f69b3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83253-0502-ae7f-1a4b-0303c40f69b3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8d266210-daac-4633-a401-6d3351a46c93 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83253-0502-ae7f-1a4b-0303c40f69b3?request_guid=8d266210-daac-4633-a401-6d3351a46c93 HTTP/1.1" 200 2170 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83253-0502-ae7f-1a4b-0303c40f69b3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c056213e-1982-4ca9-acb1-aa8ec7987954 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83253-0502-ae7f-1a4b-0303c40f69b3?request_guid=c056213e-1982-4ca9-acb1-aa8ec7987954 HTTP/1.1" 200 2172 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83253-0502-ae7f-1a4b-0303c40f69b3'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 011f5d6e-5e79-48cc-a5cb-039e6c541eef +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83253-0502-ae7f-1a4b-0303c40f69b3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83253-0502-ae7f-1a4b-0303c40f69b3'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 36fddb6e-e89c-44b8-ae02-3d5bce8f5b79 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=011f5d6e-5e79-48cc-a5cb-039e6c541eef&request_guid=36fddb6e-e89c-44b8-ae02-3d5bce8f5b79 HTTP/1.1" 200 2509 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83253-0502-ae7a-1a4b-0303c40f4c8b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83253-0502-ae7a-1a4b-0303c40f4c8b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 994d05d4-724e-4704-845e-7086b236779e +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 842216be-86fe-489c-baf6-914bc17c19fa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=994d05d4-724e-4704-845e-7086b236779e&request_guid=842216be-86fe-489c-baf6-914bc17c19fa HTTP/1.1" 200 2810 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83253-0502-ae2c-1a4b-0303c40f5adf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83253-0502-ae2c-1a4b-0303c40f5adf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83253-0502-ae2c-1a4b-0303c40f5adf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: db6fc2d9-496c-4bea-bc8c-bb678b507571 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83253-0502-ae2c-1a4b-0303c40f5adf?request_guid=db6fc2d9-496c-4bea-bc8c-bb678b507571 HTTP/1.1" 200 1675 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83253-0502-ae2c-1a4b-0303c40f5adf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 48ca03d0-ca44-4b35-afab-17edae045faa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83253-0502-ae2c-1a4b-0303c40f5adf?request_guid=48ca03d0-ca44-4b35-afab-17edae045faa HTTP/1.1" 200 1675 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83253-0502-ae2c-1a4b-0303c40f5adf'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 8c7e531e-da2d-4cfe-a309-f520a2874904 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83253-0502-ae2c-1a4b-0303c40f5adf'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83253-0502-ae2c-1a4b-0303c40f5adf'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cf0ab8bd-ee60-4a7f-b867-d3fd653da808 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=8c7e531e-da2d-4cfe-a309-f520a2874904&request_guid=cf0ab8bd-ee60-4a7f-b867-d3fd653da808 HTTP/1.1" 200 2813 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83253-0502-ae7a-1a4b-0303c40f4ca7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83253-0502-ae7a-1a4b-0303c40f4ca7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 8.026s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 8.03s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 8.036s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=20d31a55-fa01-4fb1-bd8a-56856253398a +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f852a424-043d-40ae-9bf6-36662aabb93d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1239281967520 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1239281967520 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1239282382016 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1239282382016 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1239282382016 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1239282382016 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1239281967520 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1239281967520 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=20d31a55-fa01-4fb1-bd8a-56856253398a&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=f852a424-043d-40ae-9bf6-36662aabb93d HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=3dca969d-dab9-4b11-9e88-16302db46a29 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 45dc6982-38ac-4cf1-bf61-e8c25c69a738 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=3dca969d-dab9-4b11-9e88-16302db46a29&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=45dc6982-38ac-4cf1-bf61-e8c25c69a738 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00452s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: ad45cf9d-e039-4d70-9d99-e082ba69ed0d +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 41658cdd-70ad-4880-9ec7-1d72cded4daa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ad45cf9d-e039-4d70-9d99-e082ba69ed0d&request_guid=41658cdd-70ad-4880-9ec7-1d72cded4daa HTTP/1.1" 200 2763 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325a-0502-ad67-1a4b-0303c4111083 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325a-0502-ad67-1a4b-0303c4111083 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325a-0502-ad67-1a4b-0303c4111083' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: aff8ccac-83e5-4fc5-9b25-f84018ddbfbb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325a-0502-ad67-1a4b-0303c4111083?request_guid=aff8ccac-83e5-4fc5-9b25-f84018ddbfbb HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325a-0502-ad67-1a4b-0303c4111083' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a6f9b338-c481-4e46-9ea0-2fea792082cd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325a-0502-ad67-1a4b-0303c4111083?request_guid=a6f9b338-c481-4e46-9ea0-2fea792082cd HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8325a-0502-ad67-1a4b-0303c4111083'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 88f40718-89ce-4b48-9944-a15f795117b3 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8325a-0502-ad67-1a4b-0303c4111083'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8325a-0502-ad67-1a4b-0303c4111083'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 33645903-88cc-4875-9059-01fa6a0946e1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=88f40718-89ce-4b48-9944-a15f795117b3&request_guid=33645903-88cc-4875-9059-01fa6a0946e1 HTTP/1.1" 200 2764 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325a-0502-ad67-1a4b-0303c41110bf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325a-0502-ad67-1a4b-0303c41110bf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: ddb450eb-86d5-4704-b355-32b94fc5ba81 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3c0b004e-491e-4265-8cdc-941e22e7b71b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ddb450eb-86d5-4704-b355-32b94fc5ba81&request_guid=3c0b004e-491e-4265-8cdc-941e22e7b71b HTTP/1.1" 200 2506 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325a-0502-ad67-1a4b-0303c41110c3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325a-0502-ad67-1a4b-0303c41110c3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325a-0502-ad67-1a4b-0303c41110c3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9596f374-830e-45fd-b92c-354233be988b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325a-0502-ad67-1a4b-0303c41110c3?request_guid=9596f374-830e-45fd-b92c-354233be988b HTTP/1.1" 200 2171 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325a-0502-ad67-1a4b-0303c41110c3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6ee22738-f101-45d5-bdba-9a7ce1d65b44 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325a-0502-ad67-1a4b-0303c41110c3?request_guid=6ee22738-f101-45d5-bdba-9a7ce1d65b44 HTTP/1.1" 200 2172 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8325a-0502-ad67-1a4b-0303c41110c3'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: e0514c21-c2eb-45a9-a9ba-66b159f2ac67 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8325a-0502-ad67-1a4b-0303c41110c3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8325a-0502-ad67-1a4b-0303c41110c3'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1c6fae27-6379-4cf5-8d05-d25f3f3f23b9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e0514c21-c2eb-45a9-a9ba-66b159f2ac67&request_guid=1c6fae27-6379-4cf5-8d05-d25f3f3f23b9 HTTP/1.1" 200 2503 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325a-0502-ae7f-1a4b-0303c411209b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325a-0502-ae7f-1a4b-0303c411209b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 1dde8d90-282d-4905-9ebc-ddd089799f33 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 22d6b9f0-bfcd-4e4f-959f-34d45778af5e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1dde8d90-282d-4905-9ebc-ddd089799f33&request_guid=22d6b9f0-bfcd-4e4f-959f-34d45778af5e HTTP/1.1" 200 2810 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325a-0502-ae2c-1a4b-0303c410fe3b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325a-0502-ae2c-1a4b-0303c410fe3b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325a-0502-ae2c-1a4b-0303c410fe3b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3e1050be-ce6c-4408-a221-f39a47e641ed +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325a-0502-ae2c-1a4b-0303c410fe3b?request_guid=3e1050be-ce6c-4408-a221-f39a47e641ed HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325a-0502-ae2c-1a4b-0303c410fe3b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 666dff19-549e-4954-93ba-3ed3495b11b8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325a-0502-ae2c-1a4b-0303c410fe3b?request_guid=666dff19-549e-4954-93ba-3ed3495b11b8 HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8325a-0502-ae2c-1a4b-0303c410fe3b'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: e111d668-a469-48bc-b941-cee978938000 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8325a-0502-ae2c-1a4b-0303c410fe3b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8325a-0502-ae2c-1a4b-0303c410fe3b'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5169655d-43a3-4ec7-8ff1-a6dfc4d06aa0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e111d668-a469-48bc-b941-cee978938000&request_guid=5169655d-43a3-4ec7-8ff1-a6dfc4d06aa0 HTTP/1.1" 200 2815 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325a-0502-ae87-1a4b-0303c411095f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325a-0502-ae87-1a4b-0303c411095f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:54:26] "GET /sfexec?csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:54:26] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:54:26] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:54:27] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:54:27] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 57.72s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 57.73s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 57.73s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=21f0f34f-a3b9-4e71-a879-1e5419ae72e3 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 54d0c0dc-77a5-4495-a760-a627663ab9f0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1639129931088 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1639129931088 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1639130312816 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1639130312816 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1639130312816 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1639130312816 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1639129931088 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1639129931088 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=21f0f34f-a3b9-4e71-a879-1e5419ae72e3&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=54d0c0dc-77a5-4495-a760-a627663ab9f0 HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=30da3bba-77b6-4380-b14d-17ecc88ceae0 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3fe406d5-8492-4a7c-a59f-3d4c309cbbb4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=30da3bba-77b6-4380-b14d-17ecc88ceae0&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=3fe406d5-8492-4a7c-a59f-3d4c309cbbb4 HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00241s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 905f737b-4b7d-4ea3-bf36-cfd77271fc7a +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9f8b9253-f3d3-43f4-9a4f-c22d5c613fa5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=905f737b-4b7d-4ea3-bf36-cfd77271fc7a&request_guid=9f8b9253-f3d3-43f4-9a4f-c22d5c613fa5 HTTP/1.1" 200 2764 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325c-0502-ae87-1a4b-0303c411a8af +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325c-0502-ae87-1a4b-0303c411a8af +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325c-0502-ae87-1a4b-0303c411a8af' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a342944a-a13a-4c9c-b9f9-75431a917564 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325c-0502-ae87-1a4b-0303c411a8af?request_guid=a342944a-a13a-4c9c-b9f9-75431a917564 HTTP/1.1" 200 1861 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325c-0502-ae87-1a4b-0303c411a8af' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a22ab04b-cd50-4209-ab95-1012558d1523 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325c-0502-ae87-1a4b-0303c411a8af?request_guid=a22ab04b-cd50-4209-ab95-1012558d1523 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8325c-0502-ae87-1a4b-0303c411a8af'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 90dc1829-ca9e-40b6-af81-a4bb930f116d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8325c-0502-ae87-1a4b-0303c411a8af'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8325c-0502-ae87-1a4b-0303c411a8af'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: eb359ee0-f5bb-4825-b15a-9abc8dd6d377 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=90dc1829-ca9e-40b6-af81-a4bb930f116d&request_guid=eb359ee0-f5bb-4825-b15a-9abc8dd6d377 HTTP/1.1" 200 2764 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325c-0502-ad67-1a4b-0303c4117ecb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325c-0502-ad67-1a4b-0303c4117ecb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 75c23ab5-0ce0-4dee-8c82-fc7a22bdf4b8 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 11ce3d87-6dc1-488c-be49-a2b755496592 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=75c23ab5-0ce0-4dee-8c82-fc7a22bdf4b8&request_guid=11ce3d87-6dc1-488c-be49-a2b755496592 HTTP/1.1" 200 2503 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325c-0502-ae2c-1a4b-0303c4118f2b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325c-0502-ae2c-1a4b-0303c4118f2b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325c-0502-ae2c-1a4b-0303c4118f2b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f00762b6-0184-4406-b667-08e932db6e4b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325c-0502-ae2c-1a4b-0303c4118f2b?request_guid=f00762b6-0184-4406-b667-08e932db6e4b HTTP/1.1" 200 2172 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325c-0502-ae2c-1a4b-0303c4118f2b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 77911504-ecb0-4a02-a535-d37c46d2bf72 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325c-0502-ae2c-1a4b-0303c4118f2b?request_guid=77911504-ecb0-4a02-a535-d37c46d2bf72 HTTP/1.1" 200 2171 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8325c-0502-ae2c-1a4b-0303c4118f2b'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 3faf0b4f-9d5d-4902-a394-a57845e24974 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8325c-0502-ae2c-1a4b-0303c4118f2b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8325c-0502-ae2c-1a4b-0303c4118f2b'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 521fa6c9-af22-4fec-a874-f1cadc7c61a9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3faf0b4f-9d5d-4902-a394-a57845e24974&request_guid=521fa6c9-af22-4fec-a874-f1cadc7c61a9 HTTP/1.1" 200 2505 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325c-0502-ad67-1a4b-0303c4117f17 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325c-0502-ad67-1a4b-0303c4117f17 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: aa1ee14c-2535-4009-8d91-b942f0850fa7 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fe0c2a49-73a7-454f-bb53-36eb786e0004 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=aa1ee14c-2535-4009-8d91-b942f0850fa7&request_guid=fe0c2a49-73a7-454f-bb53-36eb786e0004 HTTP/1.1" 200 2816 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325c-0502-ae87-1a4b-0303c411a937 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325c-0502-ae87-1a4b-0303c411a937 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325c-0502-ae87-1a4b-0303c411a937' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4a9cf878-31ec-497f-8ba7-f848baa0dba0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325c-0502-ae87-1a4b-0303c411a937?request_guid=4a9cf878-31ec-497f-8ba7-f848baa0dba0 HTTP/1.1" 200 1676 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325c-0502-ae87-1a4b-0303c411a937' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2e32f204-1356-4157-b215-bff9655b4767 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325c-0502-ae87-1a4b-0303c411a937?request_guid=2e32f204-1356-4157-b215-bff9655b4767 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8325c-0502-ae87-1a4b-0303c411a937'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 14d4fe8c-30cf-4859-a528-42ec4a175a6d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8325c-0502-ae87-1a4b-0303c411a937'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8325c-0502-ae87-1a4b-0303c411a937'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 745ba8c5-ba91-40d0-ba4d-6a2cbdc14f83 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=14d4fe8c-30cf-4859-a528-42ec4a175a6d&request_guid=745ba8c5-ba91-40d0-ba4d-6a2cbdc14f83 HTTP/1.1" 200 2814 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325c-0502-ae7f-1a4b-0303c4116f83 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325c-0502-ae7f-1a4b-0303c4116f83 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:56:41] "GET /sfexec?csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:56:41] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:56:41] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:56:42] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 11.45s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 11.45s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 11.46s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=38eacbbd-d19c-4bd9-8f6f-05e5080042e6 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 03e564b9-4b00-4a83-b1ad-ff3f3a365afb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2334110817616 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2334110817616 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2334111199344 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2334111199344 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2334111199344 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2334111199344 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2334110817616 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2334110817616 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=38eacbbd-d19c-4bd9-8f6f-05e5080042e6&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=03e564b9-4b00-4a83-b1ad-ff3f3a365afb HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=40cf7cd8-844f-4adb-ac05-6704542dd090 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4ee4d5bd-d9b6-4a8a-8c4c-8517ac71e87a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=40cf7cd8-844f-4adb-ac05-6704542dd090&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=4ee4d5bd-d9b6-4a8a-8c4c-8517ac71e87a HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00410s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: fc177943-da2f-47ad-8c79-786c400ea9f3 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 663a5e91-4a29-4dff-99c1-b1de4e92bb69 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=fc177943-da2f-47ad-8c79-786c400ea9f3&request_guid=663a5e91-4a29-4dff-99c1-b1de4e92bb69 HTTP/1.1" 200 2766 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325e-0502-ae7f-1a4b-0303c4121a8f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325e-0502-ae7f-1a4b-0303c4121a8f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325e-0502-ae7f-1a4b-0303c4121a8f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: aec38910-8aaf-4830-b583-3139f665ed82 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325e-0502-ae7f-1a4b-0303c4121a8f?request_guid=aec38910-8aaf-4830-b583-3139f665ed82 HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325e-0502-ae7f-1a4b-0303c4121a8f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a6da68c0-b6f7-4e36-bc64-78cf238c3e60 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325e-0502-ae7f-1a4b-0303c4121a8f?request_guid=a6da68c0-b6f7-4e36-bc64-78cf238c3e60 HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8325e-0502-ae7f-1a4b-0303c4121a8f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: b83053ef-a19a-4a4d-89dd-355b3526649a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8325e-0502-ae7f-1a4b-0303c4121a8f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8325e-0502-ae7f-1a4b-0303c4121a8f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 735f1907-64a9-480b-89cc-ab0782629fe3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b83053ef-a19a-4a4d-89dd-355b3526649a&request_guid=735f1907-64a9-480b-89cc-ab0782629fe3 HTTP/1.1" 200 2767 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325e-0502-ad67-1a4b-0303c4123673 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325e-0502-ad67-1a4b-0303c4123673 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 51389fd0-fb24-4739-9ba7-d6cfb43b8b94 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 62e0d6c6-778d-4714-a43a-38c0ef68c4d2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=51389fd0-fb24-4739-9ba7-d6cfb43b8b94&request_guid=62e0d6c6-778d-4714-a43a-38c0ef68c4d2 HTTP/1.1" 200 2508 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325e-0502-ae7a-1a4b-0303c412276b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325e-0502-ae7a-1a4b-0303c412276b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325e-0502-ae7a-1a4b-0303c412276b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 09b7d7ce-a2aa-42a6-9287-76d05b482afa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325e-0502-ae7a-1a4b-0303c412276b?request_guid=09b7d7ce-a2aa-42a6-9287-76d05b482afa HTTP/1.1" 200 2173 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325e-0502-ae7a-1a4b-0303c412276b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f3aa916b-aaef-4011-b865-0aec22f0d238 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325e-0502-ae7a-1a4b-0303c412276b?request_guid=f3aa916b-aaef-4011-b865-0aec22f0d238 HTTP/1.1" 200 2172 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8325e-0502-ae7a-1a4b-0303c412276b'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: ce5d34a7-a517-435a-986b-fc2204f2c6b6 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8325e-0502-ae7a-1a4b-0303c412276b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8325e-0502-ae7a-1a4b-0303c412276b'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bd195421-ebe3-4002-afa4-3102f81cea76 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ce5d34a7-a517-435a-986b-fc2204f2c6b6&request_guid=bd195421-ebe3-4002-afa4-3102f81cea76 HTTP/1.1" 200 2511 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325e-0502-ae87-1a4b-0303c4124343 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325e-0502-ae87-1a4b-0303c4124343 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 255992e7-eba9-47d6-8552-48497168f482 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5f06b987-ee34-4abc-9518-b40593219782 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=255992e7-eba9-47d6-8552-48497168f482&request_guid=5f06b987-ee34-4abc-9518-b40593219782 HTTP/1.1" 200 2816 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325e-0502-ae87-1a4b-0303c4124353 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325e-0502-ae87-1a4b-0303c4124353 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325e-0502-ae87-1a4b-0303c4124353' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2a864a46-a072-4fd9-b9e9-7e9004b72f62 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325e-0502-ae87-1a4b-0303c4124353?request_guid=2a864a46-a072-4fd9-b9e9-7e9004b72f62 HTTP/1.1" 200 1676 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325e-0502-ae87-1a4b-0303c4124353' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fd62018a-904f-4339-a8c7-1d6befeda4d5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325e-0502-ae87-1a4b-0303c4124353?request_guid=fd62018a-904f-4339-a8c7-1d6befeda4d5 HTTP/1.1" 200 1675 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8325e-0502-ae87-1a4b-0303c4124353'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: ae9af699-3f6d-43d4-aeef-ec24a2a2eab1 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8325e-0502-ae87-1a4b-0303c4124353'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8325e-0502-ae87-1a4b-0303c4124353'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d72d8bfa-8b6e-41d1-ab6b-3838add45b90 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ae9af699-3f6d-43d4-aeef-ec24a2a2eab1&request_guid=d72d8bfa-8b6e-41d1-ab6b-3838add45b90 HTTP/1.1" 200 2814 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325e-0502-ae7a-1a4b-0303c41227bb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325e-0502-ae7a-1a4b-0303c41227bb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:58:28] "GET /sfexec?csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:58:28] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:58:29] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 10:58:29] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 102.2s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 102.3s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 102.3s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=74e37858-845b-4388-a354-bd5d873e943b +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3a380d37-2d38-4861-8572-e4a6c7631a8b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=74e37858-845b-4388-a354-bd5d873e943b&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=3a380d37-2d38-4861-8572-e4a6c7631a8b HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=8bd97745-8953-4ff2-919b-1b7e298cff15 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fdcd6d48-fb14-4b4d-95c4-2accad0eda02 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=8bd97745-8953-4ff2-919b-1b7e298cff15&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=fdcd6d48-fb14-4b4d-95c4-2accad0eda02 HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 91.04s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 16f65c42-7cc3-4055-80c2-e726dac09b5a +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 230511ea-24c1-4b85-ad83-2de8ddd853b2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=16f65c42-7cc3-4055-80c2-e726dac09b5a&request_guid=230511ea-24c1-4b85-ad83-2de8ddd853b2 HTTP/1.1" 200 2764 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325f-0502-ae7f-1a4b-0303c4125f13 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325f-0502-ae7f-1a4b-0303c4125f13 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325f-0502-ae7f-1a4b-0303c4125f13' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ac3b7f9a-0c97-4a55-9342-890129af8003 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325f-0502-ae7f-1a4b-0303c4125f13?request_guid=ac3b7f9a-0c97-4a55-9342-890129af8003 HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325f-0502-ae7f-1a4b-0303c4125f13' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5775b90c-5ffb-4a75-8470-d526b273eaa1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325f-0502-ae7f-1a4b-0303c4125f13?request_guid=5775b90c-5ffb-4a75-8470-d526b273eaa1 HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8325f-0502-ae7f-1a4b-0303c4125f13'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 054ce844-3a44-40bd-8faf-2650025ab4d4 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8325f-0502-ae7f-1a4b-0303c4125f13'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8325f-0502-ae7f-1a4b-0303c4125f13'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 21b8de9b-c18c-4a13-9cad-53bb32d8813a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=054ce844-3a44-40bd-8faf-2650025ab4d4&request_guid=21b8de9b-c18c-4a13-9cad-53bb32d8813a HTTP/1.1" 200 2763 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325f-0502-ae2c-1a4b-0303c412a197 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325f-0502-ae2c-1a4b-0303c412a197 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: fd4bd49c-b50f-4656-a13a-d563a04805f6 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7c806728-8a62-42f6-8f55-82d258c6add0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=fd4bd49c-b50f-4656-a13a-d563a04805f6&request_guid=7c806728-8a62-42f6-8f55-82d258c6add0 HTTP/1.1" 200 2507 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325f-0502-ae7f-1a4b-0303c4125f63 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325f-0502-ae7f-1a4b-0303c4125f63 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325f-0502-ae7f-1a4b-0303c4125f63' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a5b4ba81-2a83-46bd-883a-096fef40e9aa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325f-0502-ae7f-1a4b-0303c4125f63?request_guid=a5b4ba81-2a83-46bd-883a-096fef40e9aa HTTP/1.1" 200 2172 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8325f-0502-ae7f-1a4b-0303c4125f63' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: dda068ce-aa58-427c-924e-77fcb8d16157 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8325f-0502-ae7f-1a4b-0303c4125f63?request_guid=dda068ce-aa58-427c-924e-77fcb8d16157 HTTP/1.1" 200 2171 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8325f-0502-ae7f-1a4b-0303c4125f63'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: debea97d-dcd7-4478-81e9-bb916bc36829 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8325f-0502-ae7f-1a4b-0303c4125f63'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8325f-0502-ae7f-1a4b-0303c4125f63'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f226007e-7bb6-40dd-ab9c-ad2ec3f90ea7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=debea97d-dcd7-4478-81e9-bb916bc36829&request_guid=f226007e-7bb6-40dd-ab9c-ad2ec3f90ea7 HTTP/1.1" 200 2510 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8325f-0502-ae87-1a4b-0303c4129857 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8325f-0502-ae87-1a4b-0303c4129857 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: a43e4f18-df3c-494f-91d2-c78353036b93 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2be1bece-fdcb-437e-9680-6636470bf61f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a43e4f18-df3c-494f-91d2-c78353036b93&request_guid=2be1bece-fdcb-437e-9680-6636470bf61f HTTP/1.1" 200 2815 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83260-0502-ae87-1a4b-0303c412986f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83260-0502-ae87-1a4b-0303c412986f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83260-0502-ae87-1a4b-0303c412986f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 42d5d049-ba22-49ea-aa6d-9e305e00f405 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83260-0502-ae87-1a4b-0303c412986f?request_guid=42d5d049-ba22-49ea-aa6d-9e305e00f405 HTTP/1.1" 200 1683 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83260-0502-ae87-1a4b-0303c412986f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0feef87a-8574-4c5c-a1ed-384312221cc2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83260-0502-ae87-1a4b-0303c412986f?request_guid=0feef87a-8574-4c5c-a1ed-384312221cc2 HTTP/1.1" 200 1682 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83260-0502-ae87-1a4b-0303c412986f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: c6761ff3-e9f6-41b0-8e71-167baea6ffcc +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83260-0502-ae87-1a4b-0303c412986f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83260-0502-ae87-1a4b-0303c412986f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 91d28800-eb89-4985-8130-f6e994d39852 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c6761ff3-e9f6-41b0-8e71-167baea6ffcc&request_guid=91d28800-eb89-4985-8130-f6e994d39852 HTTP/1.1" 200 2810 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83260-0502-ae2c-1a4b-0303c412a1e7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83260-0502-ae2c-1a4b-0303c412a1e7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 14.68s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 14.69s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 14.69s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=78930eb7-4015-426f-8534-8e088ab7ac4a +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6e699a11-222c-4c10-aa28-e04f3b7e55fe +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1790196409024 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1790196409024 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1790196839904 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1790196839904 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1790196839904 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1790196839904 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1790196409024 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1790196409024 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=78930eb7-4015-426f-8534-8e088ab7ac4a&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=6e699a11-222c-4c10-aa28-e04f3b7e55fe HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=58542248-a872-4cf2-8fd0-d0c4537c8a1d +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ec34187a-33da-44db-b4da-1cb7dfab9159 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=58542248-a872-4cf2-8fd0-d0c4537c8a1d&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=ec34187a-33da-44db-b4da-1cb7dfab9159 HTTP/1.1" 200 1556 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00380s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 625516bc-6283-4fa2-a5c8-a0d130ab1e84 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8ea2e6f0-e48d-4b21-a8a0-0bc8a606b14f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=625516bc-6283-4fa2-a5c8-a0d130ab1e84&request_guid=8ea2e6f0-e48d-4b21-a8a0-0bc8a606b14f HTTP/1.1" 200 2761 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83263-0502-ae2c-1a4b-0303c41392cb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83263-0502-ae2c-1a4b-0303c41392cb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83263-0502-ae2c-1a4b-0303c41392cb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d4646a34-3fd0-4f9a-a5e9-f25f798ffc33 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83263-0502-ae2c-1a4b-0303c41392cb?request_guid=d4646a34-3fd0-4f9a-a5e9-f25f798ffc33 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83263-0502-ae2c-1a4b-0303c41392cb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3dcad3b4-6a4c-4dcf-a27d-b4ce58eb7c30 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83263-0502-ae2c-1a4b-0303c41392cb?request_guid=3dcad3b4-6a4c-4dcf-a27d-b4ce58eb7c30 HTTP/1.1" 200 1847 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83263-0502-ae2c-1a4b-0303c41392cb'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: ed8ee102-4098-485e-93de-1c4ad458bcb8 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83263-0502-ae2c-1a4b-0303c41392cb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83263-0502-ae2c-1a4b-0303c41392cb'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 21591d42-178a-4e4d-9d6f-a33a393064ba +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ed8ee102-4098-485e-93de-1c4ad458bcb8&request_guid=21591d42-178a-4e4d-9d6f-a33a393064ba HTTP/1.1" 200 2764 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83263-0502-ad67-1a4b-0303c4137b83 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83263-0502-ad67-1a4b-0303c4137b83 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: a3e8d821-e34c-4f4a-aa77-6d7439552b2c +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c26c7b4f-38e0-4cbd-b173-d81533274030 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a3e8d821-e34c-4f4a-aa77-6d7439552b2c&request_guid=c26c7b4f-38e0-4cbd-b173-d81533274030 HTTP/1.1" 200 2507 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83263-0502-ad67-1a4b-0303c4137b8f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83263-0502-ad67-1a4b-0303c4137b8f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83263-0502-ad67-1a4b-0303c4137b8f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e4b0f345-5ff3-488b-939e-0f75963d2e51 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83263-0502-ad67-1a4b-0303c4137b8f?request_guid=e4b0f345-5ff3-488b-939e-0f75963d2e51 HTTP/1.1" 200 2172 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83263-0502-ad67-1a4b-0303c4137b8f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7dde5740-b095-49e7-afa2-7e4ca57751cc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83263-0502-ad67-1a4b-0303c4137b8f?request_guid=7dde5740-b095-49e7-afa2-7e4ca57751cc HTTP/1.1" 200 2172 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83263-0502-ad67-1a4b-0303c4137b8f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 1ea59a16-28c9-4be2-9bb9-8bf241c3d032 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83263-0502-ad67-1a4b-0303c4137b8f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83263-0502-ad67-1a4b-0303c4137b8f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 94c5fc80-9527-4929-b174-9c1ceae93d59 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1ea59a16-28c9-4be2-9bb9-8bf241c3d032&request_guid=94c5fc80-9527-4929-b174-9c1ceae93d59 HTTP/1.1" 200 2504 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83263-0502-ae7f-1a4b-0303c4135f07 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83263-0502-ae7f-1a4b-0303c4135f07 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: aee8ebb3-e6ff-4643-8ef3-a0637979cc9e +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bd5e16f8-cb49-40d7-b017-5ca0fdfa630a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=aee8ebb3-e6ff-4643-8ef3-a0637979cc9e&request_guid=bd5e16f8-cb49-40d7-b017-5ca0fdfa630a HTTP/1.1" 200 2815 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83263-0502-ad67-1a4b-0303c4137bb7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83263-0502-ad67-1a4b-0303c4137bb7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83263-0502-ad67-1a4b-0303c4137bb7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 947119be-56ef-4c77-9d6b-001e2fb77539 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83263-0502-ad67-1a4b-0303c4137bb7?request_guid=947119be-56ef-4c77-9d6b-001e2fb77539 HTTP/1.1" 200 1679 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83263-0502-ad67-1a4b-0303c4137bb7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 09fdb1cc-7f35-4fdc-9372-6a1ebafc34ed +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83263-0502-ad67-1a4b-0303c4137bb7?request_guid=09fdb1cc-7f35-4fdc-9372-6a1ebafc34ed HTTP/1.1" 200 1679 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83263-0502-ad67-1a4b-0303c4137bb7'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: a580efd3-6069-4454-9a8c-1633f6fb60b0 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83263-0502-ad67-1a4b-0303c4137bb7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83263-0502-ad67-1a4b-0303c4137bb7'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1bd1f6c1-fcfc-4469-9d03-53110b1cd755 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a580efd3-6069-4454-9a8c-1633f6fb60b0&request_guid=1bd1f6c1-fcfc-4469-9d03-53110b1cd755 HTTP/1.1" 200 2812 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83263-0502-ae2c-1a4b-0303c413935f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83263-0502-ae2c-1a4b-0303c413935f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3779s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3831s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3892s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=eb1d5538-9a49-410b-b84a-43af323819ec +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0573db37-3a6e-4c46-8efe-2e7d38f615a3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2066456076896 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2066456076896 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2066456458624 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2066456458624 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2066456458624 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2066456458624 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2066456076896 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2066456076896 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=eb1d5538-9a49-410b-b84a-43af323819ec&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=0573db37-3a6e-4c46-8efe-2e7d38f615a3 HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=0a3fc3f2-be15-4d38-97f4-35c1cad54dd6 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2fb10480-365e-4da7-bf5c-09bf08952b3e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=0a3fc3f2-be15-4d38-97f4-35c1cad54dd6&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=2fb10480-365e-4da7-bf5c-09bf08952b3e HTTP/1.1" 200 1556 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00467s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 7ee1a486-04f7-4738-b7f4-8676168529aa +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c502732c-425c-42ee-aa8c-6afaa5da4405 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7ee1a486-04f7-4738-b7f4-8676168529aa&request_guid=c502732c-425c-42ee-aa8c-6afaa5da4405 HTTP/1.1" 200 2767 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83264-0502-ae87-1a4b-0303c413d22f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83264-0502-ae87-1a4b-0303c413d22f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83264-0502-ae87-1a4b-0303c413d22f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a42d1755-031e-43ad-9f3d-69499a8b429d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83264-0502-ae87-1a4b-0303c413d22f?request_guid=a42d1755-031e-43ad-9f3d-69499a8b429d HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83264-0502-ae87-1a4b-0303c413d22f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6814ed13-76f3-4edd-9714-1b62e311e4b7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83264-0502-ae87-1a4b-0303c413d22f?request_guid=6814ed13-76f3-4edd-9714-1b62e311e4b7 HTTP/1.1" 200 1853 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83264-0502-ae87-1a4b-0303c413d22f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 21b001c1-b6cf-4193-9e18-cdb6e6e90d2b +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83264-0502-ae87-1a4b-0303c413d22f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83264-0502-ae87-1a4b-0303c413d22f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e254c222-e7bb-4f2f-a493-dcb8198e94c6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=21b001c1-b6cf-4193-9e18-cdb6e6e90d2b&request_guid=e254c222-e7bb-4f2f-a493-dcb8198e94c6 HTTP/1.1" 200 2766 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83264-0502-ae87-1a4b-0303c413d2bf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83264-0502-ae87-1a4b-0303c413d2bf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: dafdb254-5937-4513-8e47-78475d4452a0 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fad90c26-6f21-4bb0-90bd-8dd71a4c91f7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=dafdb254-5937-4513-8e47-78475d4452a0&request_guid=fad90c26-6f21-4bb0-90bd-8dd71a4c91f7 HTTP/1.1" 200 2506 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83264-0502-ad67-1a4b-0303c413b443 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83264-0502-ad67-1a4b-0303c413b443 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83264-0502-ad67-1a4b-0303c413b443' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e84f74da-3d6b-405f-baad-c75acc330163 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83264-0502-ad67-1a4b-0303c413b443?request_guid=e84f74da-3d6b-405f-baad-c75acc330163 HTTP/1.1" 200 2181 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83264-0502-ad67-1a4b-0303c413b443' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b09a33dc-9a3a-4731-a31b-b22cdbaade89 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83264-0502-ad67-1a4b-0303c413b443?request_guid=b09a33dc-9a3a-4731-a31b-b22cdbaade89 HTTP/1.1" 200 2184 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83264-0502-ad67-1a4b-0303c413b443'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 0b937c2f-dc9b-4607-8fa7-b8e36a03a5a6 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83264-0502-ad67-1a4b-0303c413b443'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83264-0502-ad67-1a4b-0303c413b443'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 47a0ae1d-157e-4a6b-bb52-8c2b779936e7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0b937c2f-dc9b-4607-8fa7-b8e36a03a5a6&request_guid=47a0ae1d-157e-4a6b-bb52-8c2b779936e7 HTTP/1.1" 200 2510 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83264-0502-ae87-1a4b-0303c413d303 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83264-0502-ae87-1a4b-0303c413d303 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 44c204be-bced-406e-ad61-2245b4ee93dc +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 97bdd7d4-01c8-46cc-a8e9-7e287041b2df +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=44c204be-bced-406e-ad61-2245b4ee93dc&request_guid=97bdd7d4-01c8-46cc-a8e9-7e287041b2df HTTP/1.1" 200 2817 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83264-0502-ae7f-1a4b-0303c413a757 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83264-0502-ae7f-1a4b-0303c413a757 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83264-0502-ae7f-1a4b-0303c413a757' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f70cbdea-fd9e-4034-bc30-72372df73468 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83264-0502-ae7f-1a4b-0303c413a757?request_guid=f70cbdea-fd9e-4034-bc30-72372df73468 HTTP/1.1" 200 1669 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83264-0502-ae7f-1a4b-0303c413a757' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a76dae77-6ed3-48f3-99f9-6b7fd245478a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83264-0502-ae7f-1a4b-0303c413a757?request_guid=a76dae77-6ed3-48f3-99f9-6b7fd245478a HTTP/1.1" 200 1669 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83264-0502-ae7f-1a4b-0303c413a757'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 9884c254-2c9b-4a95-8285-30ca84292832 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83264-0502-ae7f-1a4b-0303c413a757'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83264-0502-ae7f-1a4b-0303c413a757'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8d1c0f92-906d-4e72-83b1-b6b5c37a9b6d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=9884c254-2c9b-4a95-8285-30ca84292832&request_guid=8d1c0f92-906d-4e72-83b1-b6b5c37a9b6d HTTP/1.1" 200 2818 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83264-0502-ae87-1a4b-0303c413d327 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83264-0502-ae87-1a4b-0303c413d327 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 17.55s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 17.56s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 17.57s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=0ca1efed-3d2b-4478-b2f3-b6b7d88d5c40 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 624e25be-5351-43de-a6b1-b81dd627ff31 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1978975477264 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1978975477264 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1978975891760 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1978975891760 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1978975891760 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1978975891760 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1978975477264 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1978975477264 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=0ca1efed-3d2b-4478-b2f3-b6b7d88d5c40&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=624e25be-5351-43de-a6b1-b81dd627ff31 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=4fa1fa20-df64-4785-a51b-6de88e785ebc +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 00162402-367f-47c3-a997-f24dce408333 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=4fa1fa20-df64-4785-a51b-6de88e785ebc&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=00162402-367f-47c3-a997-f24dce408333 HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00487s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 3ef7680d-0cd3-49b7-8197-bc03b10a8d08 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a77fb287-7fd7-4e57-a256-415b26d1a3e5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3ef7680d-0cd3-49b7-8197-bc03b10a8d08&request_guid=a77fb287-7fd7-4e57-a256-415b26d1a3e5 HTTP/1.1" 200 2761 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83267-0502-ae2c-1a4b-0303c4148c93 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83267-0502-ae2c-1a4b-0303c4148c93 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83267-0502-ae2c-1a4b-0303c4148c93' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 12b0e2ae-fc4a-45f2-a8f8-5ebdfd4ceac1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83267-0502-ae2c-1a4b-0303c4148c93?request_guid=12b0e2ae-fc4a-45f2-a8f8-5ebdfd4ceac1 HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83267-0502-ae2c-1a4b-0303c4148c93' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3f2211bf-635d-42e7-976d-1c8ecd519295 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83267-0502-ae2c-1a4b-0303c4148c93?request_guid=3f2211bf-635d-42e7-976d-1c8ecd519295 HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83267-0502-ae2c-1a4b-0303c4148c93'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: adeb4b5d-9693-46ce-962b-55a2dc180f7b +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83267-0502-ae2c-1a4b-0303c4148c93'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83267-0502-ae2c-1a4b-0303c4148c93'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ae9ebe29-d9e1-4fe1-9de4-68da2ddbef65 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=adeb4b5d-9693-46ce-962b-55a2dc180f7b&request_guid=ae9ebe29-d9e1-4fe1-9de4-68da2ddbef65 HTTP/1.1" 200 2765 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83267-0502-ae87-1a4b-0303c414b797 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83267-0502-ae87-1a4b-0303c414b797 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 6f0639a1-9022-49b0-ac7d-07cf3e1f1461 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 65b3e891-f724-4c3d-9912-78553cf6c395 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6f0639a1-9022-49b0-ac7d-07cf3e1f1461&request_guid=65b3e891-f724-4c3d-9912-78553cf6c395 HTTP/1.1" 200 2509 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83267-0502-ae7a-1a4b-0303c414c61f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83267-0502-ae7a-1a4b-0303c414c61f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83267-0502-ae7a-1a4b-0303c414c61f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 05b6a91d-30f7-43a8-87c1-b7d48f27e2ee +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83267-0502-ae7a-1a4b-0303c414c61f?request_guid=05b6a91d-30f7-43a8-87c1-b7d48f27e2ee HTTP/1.1" 200 2173 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83267-0502-ae7a-1a4b-0303c414c61f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0c6325cc-209e-414e-a7c0-4577f5c46bd5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83267-0502-ae7a-1a4b-0303c414c61f?request_guid=0c6325cc-209e-414e-a7c0-4577f5c46bd5 HTTP/1.1" 200 2175 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83267-0502-ae7a-1a4b-0303c414c61f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 251d6a0c-cb6f-4ae3-b2c7-c0a423c14752 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83267-0502-ae7a-1a4b-0303c414c61f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83267-0502-ae7a-1a4b-0303c414c61f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0c2d4bb3-9e09-4237-8d91-67535480a335 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=251d6a0c-cb6f-4ae3-b2c7-c0a423c14752&request_guid=0c2d4bb3-9e09-4237-8d91-67535480a335 HTTP/1.1" 200 2507 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83267-0502-ae7f-1a4b-0303c4149e43 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83267-0502-ae7f-1a4b-0303c4149e43 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 2d46963c-3a17-4509-b259-d6aa1018faee +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7374bd0c-3a74-4d10-84a1-b697a96dd3bf +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2d46963c-3a17-4509-b259-d6aa1018faee&request_guid=7374bd0c-3a74-4d10-84a1-b697a96dd3bf HTTP/1.1" 200 2813 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83267-0502-ad67-1a4b-0303c414aa93 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83267-0502-ad67-1a4b-0303c414aa93 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83267-0502-ad67-1a4b-0303c414aa93' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5e41c1b9-f279-4e46-94ec-c4d62b02b6da +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83267-0502-ad67-1a4b-0303c414aa93?request_guid=5e41c1b9-f279-4e46-94ec-c4d62b02b6da HTTP/1.1" 200 1677 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83267-0502-ad67-1a4b-0303c414aa93' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 23d4d500-5303-45db-bf85-b0b80315ee67 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83267-0502-ad67-1a4b-0303c414aa93?request_guid=23d4d500-5303-45db-bf85-b0b80315ee67 HTTP/1.1" 200 1675 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83267-0502-ad67-1a4b-0303c414aa93'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: fa0b6b6e-dea0-4381-abd4-f1fe1daefc04 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83267-0502-ad67-1a4b-0303c414aa93'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83267-0502-ad67-1a4b-0303c414aa93'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 684a55f9-3ffc-4f67-8ae8-8f23a68f4a74 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=fa0b6b6e-dea0-4381-abd4-f1fe1daefc04&request_guid=684a55f9-3ffc-4f67-8ae8-8f23a68f4a74 HTTP/1.1" 200 2817 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83267-0502-ae87-1a4b-0303c414b7f7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83267-0502-ae87-1a4b-0303c414b7f7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 10.95s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 10.95s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 10.96s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=7f54a638-839a-4f56-a799-88e5f12a13ce +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ca0d81bd-3de0-450f-bc06-9c95f6bca280 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2301474415008 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2301474415008 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2301474829504 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2301474829504 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2301474829504 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2301474829504 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2301474415008 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2301474415008 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=7f54a638-839a-4f56-a799-88e5f12a13ce&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=ca0d81bd-3de0-450f-bc06-9c95f6bca280 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=52cbbea8-d531-4ab6-a311-d0d2b7efe263 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6b1e2760-94ed-45c3-9f84-ba6d5c1cffc2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=52cbbea8-d531-4ab6-a311-d0d2b7efe263&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=6b1e2760-94ed-45c3-9f84-ba6d5c1cffc2 HTTP/1.1" 200 1557 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00457s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 2b6717d4-eca5-4e1e-a622-85488a2015d1 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8c6adf6b-6bc8-4f52-8618-269bef6949ce +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2b6717d4-eca5-4e1e-a622-85488a2015d1&request_guid=8c6adf6b-6bc8-4f52-8618-269bef6949ce HTTP/1.1" 200 2765 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8326a-0502-ae7a-1a4b-0303c415a067 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8326a-0502-ae7a-1a4b-0303c415a067 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8326a-0502-ae7a-1a4b-0303c415a067' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9b1fa385-8e75-4fad-b879-95d7d0e9f45c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8326a-0502-ae7a-1a4b-0303c415a067?request_guid=9b1fa385-8e75-4fad-b879-95d7d0e9f45c HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8326a-0502-ae7a-1a4b-0303c415a067' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e7142345-6190-4451-8b07-5092469b8785 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8326a-0502-ae7a-1a4b-0303c415a067?request_guid=e7142345-6190-4451-8b07-5092469b8785 HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8326a-0502-ae7a-1a4b-0303c415a067'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: f246e701-483c-401d-b874-caf488d0b9f0 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8326a-0502-ae7a-1a4b-0303c415a067'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8326a-0502-ae7a-1a4b-0303c415a067'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d45d2d00-4c7b-4c0e-92c9-775161e2fe72 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f246e701-483c-401d-b874-caf488d0b9f0&request_guid=d45d2d00-4c7b-4c0e-92c9-775161e2fe72 HTTP/1.1" 200 2765 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8326a-0502-ae7f-1a4b-0303c4157787 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8326a-0502-ae7f-1a4b-0303c4157787 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 366236f8-25b6-4a6b-9db9-32289e564c53 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: af4f6280-a22a-4b1d-a1c1-dfe17ca8b971 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=366236f8-25b6-4a6b-9db9-32289e564c53&request_guid=af4f6280-a22a-4b1d-a1c1-dfe17ca8b971 HTTP/1.1" 200 2509 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8326a-0502-ae7f-1a4b-0303c415778f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8326a-0502-ae7f-1a4b-0303c415778f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8326a-0502-ae7f-1a4b-0303c415778f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3131491e-e43f-47e3-8f34-9e26444ce15d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8326a-0502-ae7f-1a4b-0303c415778f?request_guid=3131491e-e43f-47e3-8f34-9e26444ce15d HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8326a-0502-ae7f-1a4b-0303c415778f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4119f23b-a943-42a8-9c88-47696f263b37 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8326a-0502-ae7f-1a4b-0303c415778f?request_guid=4119f23b-a943-42a8-9c88-47696f263b37 HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8326a-0502-ae7f-1a4b-0303c415778f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 4b9f43ed-dbdd-4614-a0a5-664aedd42324 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8326a-0502-ae7f-1a4b-0303c415778f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8326a-0502-ae7f-1a4b-0303c415778f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c02c2cc3-5b11-472e-bfd3-4f2acc45290b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4b9f43ed-dbdd-4614-a0a5-664aedd42324&request_guid=c02c2cc3-5b11-472e-bfd3-4f2acc45290b HTTP/1.1" 200 2506 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8326a-0502-ae2c-1a4b-0303c4158463 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8326a-0502-ae2c-1a4b-0303c4158463 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 15814371-7cd7-4ae1-a9ae-3e476dd07f29 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e64fbc2b-3272-4344-8efc-68125f107cab +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=15814371-7cd7-4ae1-a9ae-3e476dd07f29&request_guid=e64fbc2b-3272-4344-8efc-68125f107cab HTTP/1.1" 200 2816 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8326a-0502-ae7f-1a4b-0303c41577eb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8326a-0502-ae7f-1a4b-0303c41577eb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8326a-0502-ae7f-1a4b-0303c41577eb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4f1454ed-a8c0-4bc8-814a-5a8976f13c8e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8326a-0502-ae7f-1a4b-0303c41577eb?request_guid=4f1454ed-a8c0-4bc8-814a-5a8976f13c8e HTTP/1.1" 200 1675 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8326a-0502-ae7f-1a4b-0303c41577eb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4006e85f-b3b5-4627-8e8f-77e534aba4ce +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8326a-0502-ae7f-1a4b-0303c41577eb?request_guid=4006e85f-b3b5-4627-8e8f-77e534aba4ce HTTP/1.1" 200 1675 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8326a-0502-ae7f-1a4b-0303c41577eb'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 70d6a631-a169-40c5-88a0-d028bdfdd52b +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8326a-0502-ae7f-1a4b-0303c41577eb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8326a-0502-ae7f-1a4b-0303c41577eb'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d7f921db-6ea9-4f8f-969a-fc67e10ae399 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=70d6a631-a169-40c5-88a0-d028bdfdd52b&request_guid=d7f921db-6ea9-4f8f-969a-fc67e10ae399 HTTP/1.1" 200 2815 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8326a-0502-ae7f-1a4b-0303c4157817 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8326a-0502-ae7f-1a4b-0303c4157817 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:10:24] "GET /sfexec?csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:10:24] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:10:24] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:10:25] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:10:25] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 114.8s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 114.8s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 114.8s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=e451729f-793f-43a3-be2c-88060dac844c +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b2c39e96-9204-4bb1-a71d-b8ada7339206 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=e451729f-793f-43a3-be2c-88060dac844c&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=b2c39e96-9204-4bb1-a71d-b8ada7339206 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=157f5a92-9654-47c2-a3c3-e541a62cea0a +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 04a6f934-be27-43cf-9d71-974245d8ac20 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=157f5a92-9654-47c2-a3c3-e541a62cea0a&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=04a6f934-be27-43cf-9d71-974245d8ac20 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 104s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 6f06253d-97b7-4b7d-8b60-259321e48521 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 24b2bc57-a0ef-4b95-b3d0-f357c2033433 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6f06253d-97b7-4b7d-8b60-259321e48521&request_guid=24b2bc57-a0ef-4b95-b3d0-f357c2033433 HTTP/1.1" 200 2766 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8326c-0502-ae7f-1a4b-0303c41614eb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8326c-0502-ae7f-1a4b-0303c41614eb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8326c-0502-ae7f-1a4b-0303c41614eb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 813423e9-9111-47e4-8351-82dd0e6cabd1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8326c-0502-ae7f-1a4b-0303c41614eb?request_guid=813423e9-9111-47e4-8351-82dd0e6cabd1 HTTP/1.1" 200 1847 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8326c-0502-ae7f-1a4b-0303c41614eb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a42889fd-6bff-476f-af42-06ddcc4ed115 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8326c-0502-ae7f-1a4b-0303c41614eb?request_guid=a42889fd-6bff-476f-af42-06ddcc4ed115 HTTP/1.1" 200 1848 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8326c-0502-ae7f-1a4b-0303c41614eb'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: d73b44b5-0c2e-489f-a1f7-f2450979b2ce +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8326c-0502-ae7f-1a4b-0303c41614eb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8326c-0502-ae7f-1a4b-0303c41614eb'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3ff6f6e3-ceeb-48ca-b525-1d948d960280 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d73b44b5-0c2e-489f-a1f7-f2450979b2ce&request_guid=3ff6f6e3-ceeb-48ca-b525-1d948d960280 HTTP/1.1" 200 2763 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8326c-0502-ae2c-1a4b-0303c41623ff +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8326c-0502-ae2c-1a4b-0303c41623ff +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 20af3683-8c84-4702-a37b-aaedd51719cd +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ac8c3f22-9bd1-4a53-9655-00298cb10f27 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=20af3683-8c84-4702-a37b-aaedd51719cd&request_guid=ac8c3f22-9bd1-4a53-9655-00298cb10f27 HTTP/1.1" 200 2510 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8326c-0502-ae87-1a4b-0303c415eebf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8326c-0502-ae87-1a4b-0303c415eebf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8326c-0502-ae87-1a4b-0303c415eebf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4d449111-9964-4ea2-a244-85ac02a22fc7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8326c-0502-ae87-1a4b-0303c415eebf?request_guid=4d449111-9964-4ea2-a244-85ac02a22fc7 HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8326c-0502-ae87-1a4b-0303c415eebf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b891999a-bdf6-4003-aea1-c82526b2c738 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8326c-0502-ae87-1a4b-0303c415eebf?request_guid=b891999a-bdf6-4003-aea1-c82526b2c738 HTTP/1.1" 200 2168 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8326c-0502-ae87-1a4b-0303c415eebf'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: c7da2897-d9c0-485f-a154-bf6c0bf8ade8 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8326c-0502-ae87-1a4b-0303c415eebf'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8326c-0502-ae87-1a4b-0303c415eebf'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 201b1402-c578-4802-b055-51c1006b52ee +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c7da2897-d9c0-485f-a154-bf6c0bf8ade8&request_guid=201b1402-c578-4802-b055-51c1006b52ee HTTP/1.1" 200 2506 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8326c-0502-ae7a-1a4b-0303c41630a7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8326c-0502-ae7a-1a4b-0303c41630a7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: ef88d9e6-0aed-4d3c-a440-235e045b6708 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 83a2c9a8-dfcb-4427-a8c4-21a19059f41c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ef88d9e6-0aed-4d3c-a440-235e045b6708&request_guid=83a2c9a8-dfcb-4427-a8c4-21a19059f41c HTTP/1.1" 200 2811 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8326c-0502-ae2c-1a4b-0303c4162577 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8326c-0502-ae2c-1a4b-0303c4162577 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8326c-0502-ae2c-1a4b-0303c4162577' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 82a8fd66-8067-45c3-9042-1cbe7dac56f9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8326c-0502-ae2c-1a4b-0303c4162577?request_guid=82a8fd66-8067-45c3-9042-1cbe7dac56f9 HTTP/1.1" 200 1662 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8326c-0502-ae2c-1a4b-0303c4162577' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7d933ae2-9033-4235-8eea-e8da8fcfd47c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8326c-0502-ae2c-1a4b-0303c4162577?request_guid=7d933ae2-9033-4235-8eea-e8da8fcfd47c HTTP/1.1" 200 1662 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8326c-0502-ae2c-1a4b-0303c4162577'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: f5831af6-b075-4b6d-9c9c-f7986d6b2416 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8326c-0502-ae2c-1a4b-0303c4162577'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8326c-0502-ae2c-1a4b-0303c4162577'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cd7e9cba-03d0-4b5d-b881-0454e084900a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f5831af6-b075-4b6d-9c9c-f7986d6b2416&request_guid=cd7e9cba-03d0-4b5d-b881-0454e084900a HTTP/1.1" 200 2815 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8326c-0502-ae87-1a4b-0303c415efd7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8326c-0502-ae87-1a4b-0303c415efd7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:12:09] "GET /sfexec?csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:12:09] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:12:10] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:12:10] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 303.1s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 303.1s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 303.1s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=89871566-9062-4f52-9962-a216974e206f +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 80917de1-5447-4f4a-adbc-8103240642ca +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=89871566-9062-4f52-9962-a216974e206f&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=80917de1-5447-4f4a-adbc-8103240642ca HTTP/1.1" 200 1547 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=c2ac0303-d5a5-49c5-b40b-908e8dd420db +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 64e38ffc-9699-47d7-8f54-71f512582ef7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=c2ac0303-d5a5-49c5-b40b-908e8dd420db&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=64e38ffc-9699-47d7-8f54-71f512582ef7 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 292.1s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: faabfa7f-ef3b-4da7-8d9d-1941266f2377 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5bc0e073-72b8-43a7-abf9-1afa8dc7060c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=faabfa7f-ef3b-4da7-8d9d-1941266f2377&request_guid=5bc0e073-72b8-43a7-abf9-1afa8dc7060c HTTP/1.1" 200 2766 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8326f-0502-ae7a-1a4b-0303c416ea5b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8326f-0502-ae7a-1a4b-0303c416ea5b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8326f-0502-ae7a-1a4b-0303c416ea5b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b5274156-769a-4150-8ebe-37b5bfe38427 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8326f-0502-ae7a-1a4b-0303c416ea5b?request_guid=b5274156-769a-4150-8ebe-37b5bfe38427 HTTP/1.1" 200 1855 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8326f-0502-ae7a-1a4b-0303c416ea5b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 90d57ffd-c9d3-4fcd-bb62-a6634c03cc54 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8326f-0502-ae7a-1a4b-0303c416ea5b?request_guid=90d57ffd-c9d3-4fcd-bb62-a6634c03cc54 HTTP/1.1" 200 1856 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8326f-0502-ae7a-1a4b-0303c416ea5b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: db09c9ca-963f-4b0e-b871-1cfa4b6e7034 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8326f-0502-ae7a-1a4b-0303c416ea5b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8326f-0502-ae7a-1a4b-0303c416ea5b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8906b5dc-e8bc-4898-9b34-ef15b2d5316f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=db09c9ca-963f-4b0e-b871-1cfa4b6e7034&request_guid=8906b5dc-e8bc-4898-9b34-ef15b2d5316f HTTP/1.1" 200 2767 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8326f-0502-ae87-1a4b-0303c416dd4f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8326f-0502-ae87-1a4b-0303c416dd4f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 573df6d3-3321-4c77-be60-2e0ff8e8c7dc +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5cc3b82f-f1b2-4bd6-8323-cae72d2da8a0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=573df6d3-3321-4c77-be60-2e0ff8e8c7dc&request_guid=5cc3b82f-f1b2-4bd6-8323-cae72d2da8a0 HTTP/1.1" 200 2506 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8326f-0502-ad67-1a4b-0303c416f987 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8326f-0502-ad67-1a4b-0303c416f987 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8326f-0502-ad67-1a4b-0303c416f987' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8aa38fb5-657f-4fb1-9db0-614788ef841b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8326f-0502-ad67-1a4b-0303c416f987?request_guid=8aa38fb5-657f-4fb1-9db0-614788ef841b HTTP/1.1" 200 2179 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8326f-0502-ad67-1a4b-0303c416f987' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c4b438b4-6654-493f-bf6f-99b54215d265 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8326f-0502-ad67-1a4b-0303c416f987?request_guid=c4b438b4-6654-493f-bf6f-99b54215d265 HTTP/1.1" 200 2178 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8326f-0502-ad67-1a4b-0303c416f987'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: abff53f2-39ac-4047-a143-b24e2f0dce5e +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8326f-0502-ad67-1a4b-0303c416f987'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8326f-0502-ad67-1a4b-0303c416f987'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1edb68c3-e9f4-4663-96f7-eec79d298fce +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=abff53f2-39ac-4047-a143-b24e2f0dce5e&request_guid=1edb68c3-e9f4-4663-96f7-eec79d298fce HTTP/1.1" 200 2500 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8326f-0502-ae2c-1a4b-0303c416cee3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8326f-0502-ae2c-1a4b-0303c416cee3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 1af6da01-050e-4ccb-acee-ab54a1bef9bd +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d4165786-cf91-4c97-801b-7ff44fa02ed4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1af6da01-050e-4ccb-acee-ab54a1bef9bd&request_guid=d4165786-cf91-4c97-801b-7ff44fa02ed4 HTTP/1.1" 200 2816 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8326f-0502-ae87-1a4b-0303c416ddbb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8326f-0502-ae87-1a4b-0303c416ddbb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8326f-0502-ae87-1a4b-0303c416ddbb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0686e3ad-434e-4b05-9cc7-6b0780b24e32 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8326f-0502-ae87-1a4b-0303c416ddbb?request_guid=0686e3ad-434e-4b05-9cc7-6b0780b24e32 HTTP/1.1" 200 1673 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8326f-0502-ae87-1a4b-0303c416ddbb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5cee40ac-f4ed-4f03-816e-4f411f8fc728 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8326f-0502-ae87-1a4b-0303c416ddbb?request_guid=5cee40ac-f4ed-4f03-816e-4f411f8fc728 HTTP/1.1" 200 1674 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8326f-0502-ae87-1a4b-0303c416ddbb'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 30de322a-defb-4058-9225-4c99c9fc0d73 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8326f-0502-ae87-1a4b-0303c416ddbb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8326f-0502-ae87-1a4b-0303c416ddbb'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 49d5c7a9-f622-4873-8c58-cf475cd77b69 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=30de322a-defb-4058-9225-4c99c9fc0d73&request_guid=49d5c7a9-f622-4873-8c58-cf475cd77b69 HTTP/1.1" 200 2816 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8326f-0502-ae87-1a4b-0303c416ddcf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8326f-0502-ae87-1a4b-0303c416ddcf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:15:16] "GET /sfexec?csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:15:16] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:15:17] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:15:17] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 518.5s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 518.5s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 518.5s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=b47da7d2-8dcf-45a4-96b7-44b4dd220278 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 394a038a-8428-4cd0-8f87-d7ae8175b6d5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=b47da7d2-8dcf-45a4-96b7-44b4dd220278&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=394a038a-8428-4cd0-8f87-d7ae8175b6d5 HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=b743ad0e-1b7d-4af7-8482-6510b715c75e +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bd6060c0-7fe9-4e52-a08b-d4ead4204935 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=b743ad0e-1b7d-4af7-8482-6510b715c75e&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=bd6060c0-7fe9-4e52-a08b-d4ead4204935 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 507.3s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 3708663b-018b-4882-8e39-a1a137b7bf18 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8b6471bc-bd23-47e6-8006-de8aa59f4747 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3708663b-018b-4882-8e39-a1a137b7bf18&request_guid=8b6471bc-bd23-47e6-8006-de8aa59f4747 HTTP/1.1" 200 2761 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83273-0502-ae2c-1a4b-0303c41841af +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83273-0502-ae2c-1a4b-0303c41841af +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83273-0502-ae2c-1a4b-0303c41841af' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5e79e863-8c96-4659-a2e0-3aefcd7fad07 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83273-0502-ae2c-1a4b-0303c41841af?request_guid=5e79e863-8c96-4659-a2e0-3aefcd7fad07 HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83273-0502-ae2c-1a4b-0303c41841af' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cd16472e-9843-4d99-aeed-5ebe9e79e472 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83273-0502-ae2c-1a4b-0303c41841af?request_guid=cd16472e-9843-4d99-aeed-5ebe9e79e472 HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83273-0502-ae2c-1a4b-0303c41841af'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: e6583c0d-134b-4d6a-b6e4-70ff5ac5396e +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83273-0502-ae2c-1a4b-0303c41841af'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83273-0502-ae2c-1a4b-0303c41841af'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 66b37439-a30c-42fd-8946-94c7111a0cfe +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e6583c0d-134b-4d6a-b6e4-70ff5ac5396e&request_guid=66b37439-a30c-42fd-8946-94c7111a0cfe HTTP/1.1" 200 2764 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83273-0502-ae7f-1a4b-0303c4185063 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83273-0502-ae7f-1a4b-0303c4185063 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 661.1s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 661.1s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 661.1s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=8b0ae3e4-9908-4608-8f20-164099855d04 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 447d4ba7-95d6-4cb4-b524-1d51714a476d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=8b0ae3e4-9908-4608-8f20-164099855d04&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=447d4ba7-95d6-4cb4-b524-1d51714a476d HTTP/1.1" 200 1549 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=588434f9-9ae6-46d4-8a68-4f513980e1d4 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6125d269-7a00-45b4-a18a-e04fd3bf35a6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=588434f9-9ae6-46d4-8a68-4f513980e1d4&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=6125d269-7a00-45b4-a18a-e04fd3bf35a6 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 649.9s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 7570a96b-823c-4b85-9b1e-e33f74622f87 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Request id: 43d7496b-5615-4548-80cb-93f803f3acbc +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:Request guid: 48b7385f-4d93-48cb-adc7-ac6e24b2174a +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.network:Request guid: de470387-edc7-489b-b2ef-7516354e82cc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=43d7496b-5615-4548-80cb-93f803f3acbc&request_guid=de470387-edc7-489b-b2ef-7516354e82cc HTTP/1.1" 200 2765 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83276-0502-ae7a-1a4b-0303c419247f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83276-0502-ae7a-1a4b-0303c419247f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83276-0502-ae7a-1a4b-0303c419247f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d46ae729-aade-466f-be36-0253af9beb33 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83276-0502-ae7a-1a4b-0303c419247f?request_guid=d46ae729-aade-466f-be36-0253af9beb33 HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83276-0502-ae7a-1a4b-0303c419247f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 941504de-fac3-42bd-83c3-a64d423c4078 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83276-0502-ae7a-1a4b-0303c419247f?request_guid=941504de-fac3-42bd-83c3-a64d423c4078 HTTP/1.1" 200 1855 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83276-0502-ae7a-1a4b-0303c419247f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 1469c71d-44ea-43a3-a69e-24bf2f8d7761 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83276-0502-ae7a-1a4b-0303c419247f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83276-0502-ae7a-1a4b-0303c419247f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 695ca10f-b2d1-4c12-ac94-40a613100ab2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1469c71d-44ea-43a3-a69e-24bf2f8d7761&request_guid=695ca10f-b2d1-4c12-ac94-40a613100ab2 HTTP/1.1" 200 2763 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83276-0502-ae2c-1a4b-0303c419311b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83276-0502-ae2c-1a4b-0303c419311b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: bc9dd4b2-69db-46e7-96bb-458bef0aac2c +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2c541051-9518-4c47-9d3b-877ac384e597 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7570a96b-823c-4b85-9b1e-e33f74622f87&request_guid=48b7385f-4d93-48cb-adc7-ac6e24b2174a HTTP/1.1" 200 2507 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83276-0502-ae7f-1a4b-0303c4190a8f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83276-0502-ae7f-1a4b-0303c4190a8f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83276-0502-ae7f-1a4b-0303c4190a8f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0c08f662-a2e7-44fc-a88d-a52e73f6e800 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83276-0502-ae7f-1a4b-0303c4190a8f?request_guid=0c08f662-a2e7-44fc-a88d-a52e73f6e800 HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83276-0502-ae7f-1a4b-0303c4190a8f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2fefe03d-3f01-45c9-b28c-38729a728e8f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=bc9dd4b2-69db-46e7-96bb-458bef0aac2c&request_guid=2c541051-9518-4c47-9d3b-877ac384e597 HTTP/1.1" 200 2506 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83276-0502-ae7f-1a4b-0303c4190a9f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83276-0502-ae7f-1a4b-0303c4190a9f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83276-0502-ae7f-1a4b-0303c4190a9f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 829b78c1-ddc1-4cf2-97fb-754c489c5dae +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83276-0502-ae7f-1a4b-0303c4190a8f?request_guid=2fefe03d-3f01-45c9-b28c-38729a728e8f HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83276-0502-ae7f-1a4b-0303c4190a8f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 065d5fba-c52b-4b60-b031-29b5ad69b3cb +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83276-0502-ae7f-1a4b-0303c4190a8f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83276-0502-ae7f-1a4b-0303c4190a8f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0e897107-34dc-4d54-828a-14fd15e7547a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83276-0502-ae7f-1a4b-0303c4190a9f?request_guid=829b78c1-ddc1-4cf2-97fb-754c489c5dae HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83276-0502-ae7f-1a4b-0303c4190a9f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 054a9725-1a4e-4dc7-bf75-5ccff4f960a5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=065d5fba-c52b-4b60-b031-29b5ad69b3cb&request_guid=0e897107-34dc-4d54-828a-14fd15e7547a HTTP/1.1" 200 2512 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83276-0502-ae87-1a4b-0303c419188b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83276-0502-ae87-1a4b-0303c419188b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83276-0502-ae7f-1a4b-0303c4190a9f?request_guid=054a9725-1a4e-4dc7-bf75-5ccff4f960a5 HTTP/1.1" 200 2167 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83276-0502-ae7f-1a4b-0303c4190a9f'))] +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 77dd3487-fdb8-42be-9d05-5e10b0e9efa6 +DEBUG:snowflake.connector.cursor:Request id: 11f3da19-ca53-451e-9b89-22a97e5ad244 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83276-0502-ae7f-1a4b-0303c4190a9f'))] +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83276-0502-ae7f-1a4b-0303c4190a9f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 230e4aa7-1486-48c4-a572-6286a817e86a +DEBUG:snowflake.connector.network:Request guid: 09ecbab3-83c2-4b22-8669-628b0710cd9a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=77dd3487-fdb8-42be-9d05-5e10b0e9efa6&request_guid=230e4aa7-1486-48c4-a572-6286a817e86a HTTP/1.1" 200 2508 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83276-0502-ae7a-1a4b-0303c419252b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83276-0502-ae7a-1a4b-0303c419252b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 36146c32-43c5-41f8-8fa0-fad847dc9b55 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cdd1b5c4-c35c-46ec-94ef-0914d65e79d3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=11f3da19-ca53-451e-9b89-22a97e5ad244&request_guid=09ecbab3-83c2-4b22-8669-628b0710cd9a HTTP/1.1" 200 2811 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83276-0502-ae2c-1a4b-0303c419316b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83276-0502-ae2c-1a4b-0303c419316b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83276-0502-ae2c-1a4b-0303c419316b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b7c250e9-86ba-439a-92d2-9454a0a3d50a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=36146c32-43c5-41f8-8fa0-fad847dc9b55&request_guid=cdd1b5c4-c35c-46ec-94ef-0914d65e79d3 HTTP/1.1" 200 2814 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83276-0502-ad67-1a4b-0303c418fcc3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83276-0502-ad67-1a4b-0303c418fcc3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83276-0502-ad67-1a4b-0303c418fcc3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4fc9c5cb-5f66-4a1f-a4d3-10e975ebc2f1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83276-0502-ae2c-1a4b-0303c419316b?request_guid=b7c250e9-86ba-439a-92d2-9454a0a3d50a HTTP/1.1" 200 1670 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83276-0502-ae2c-1a4b-0303c419316b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6d9431d2-e43e-4f79-909b-073df5286637 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83276-0502-ad67-1a4b-0303c418fcc3?request_guid=4fc9c5cb-5f66-4a1f-a4d3-10e975ebc2f1 HTTP/1.1" 200 1677 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83276-0502-ad67-1a4b-0303c418fcc3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 513c8e72-e31a-4918-b586-601df7a2c932 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83276-0502-ae2c-1a4b-0303c419316b?request_guid=6d9431d2-e43e-4f79-909b-073df5286637 HTTP/1.1" 200 1670 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83276-0502-ae2c-1a4b-0303c419316b'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 81d67dad-21fe-4c11-a211-638d4c378bd5 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83276-0502-ae2c-1a4b-0303c419316b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83276-0502-ae2c-1a4b-0303c419316b'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 61b01ff0-62c1-46a7-ab5a-57673e1f2a6d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83276-0502-ad67-1a4b-0303c418fcc3?request_guid=513c8e72-e31a-4918-b586-601df7a2c932 HTTP/1.1" 200 1676 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83276-0502-ad67-1a4b-0303c418fcc3'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 9c942c82-4431-4b51-ac64-b656e5b010cd +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83276-0502-ad67-1a4b-0303c418fcc3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83276-0502-ad67-1a4b-0303c418fcc3'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 12b66827-f5cb-4e3f-acdf-496bd583c84c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=81d67dad-21fe-4c11-a211-638d4c378bd5&request_guid=61b01ff0-62c1-46a7-ab5a-57673e1f2a6d HTTP/1.1" 200 2813 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83276-0502-ad67-1a4b-0303c418fce3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83276-0502-ad67-1a4b-0303c418fce3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=9c942c82-4431-4b51-ac64-b656e5b010cd&request_guid=12b66827-f5cb-4e3f-acdf-496bd583c84c HTTP/1.1" 200 2815 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83276-0502-ae7a-1a4b-0303c4192547 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83276-0502-ae7a-1a4b-0303c4192547 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3556s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3629s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3683s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=226d3f81-09aa-483b-9e18-7a2865dc42bf +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0f422f8c-fa86-4636-ad08-a75feb12adbb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2089005114096 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2089005114096 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2089005495824 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2089005495824 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2089005495824 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2089005495824 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2089005114096 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2089005114096 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=226d3f81-09aa-483b-9e18-7a2865dc42bf&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=0f422f8c-fa86-4636-ad08-a75feb12adbb HTTP/1.1" 200 1557 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=acfabcdf-8db6-4f7d-8124-f0c46d01d2f9 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1a0dc4d0-c355-43f7-bb27-4073dd35da30 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=acfabcdf-8db6-4f7d-8124-f0c46d01d2f9&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=1a0dc4d0-c355-43f7-bb27-4073dd35da30 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.01465s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 95.01s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 95.02s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 95.02s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=d6b6e4c0-fbf7-4b81-ad77-f9b8d264d02a +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 162cdec2-80db-4693-8607-0aa06c8223e2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 3132508234576 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 3132508234576 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 3132508632688 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 3132508632688 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 3132508632688 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 3132508632688 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 3132508234576 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 3132508234576 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=d6b6e4c0-fbf7-4b81-ad77-f9b8d264d02a&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=162cdec2-80db-4693-8607-0aa06c8223e2 HTTP/1.1" 200 1557 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=7aaf5bc3-bb92-4143-aef7-caac259c19ce +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7b14812a-cdac-4409-9110-608766693ed9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=7aaf5bc3-bb92-4143-aef7-caac259c19ce&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=7b14812a-cdac-4409-9110-608766693ed9 HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.01254s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 902d8a18-fea2-4678-86d5-5358a478e06a +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d6c8028a-fb92-4e0d-89e3-135b8a2907c2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=902d8a18-fea2-4678-86d5-5358a478e06a&request_guid=d6c8028a-fb92-4e0d-89e3-135b8a2907c2 HTTP/1.1" 200 2767 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83285-0502-ae87-1a4b-0303c41d682b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83285-0502-ae87-1a4b-0303c41d682b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83285-0502-ae87-1a4b-0303c41d682b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f6f51d83-2158-4120-a4b4-364e1ab3d107 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83285-0502-ae87-1a4b-0303c41d682b?request_guid=f6f51d83-2158-4120-a4b4-364e1ab3d107 HTTP/1.1" 200 1847 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83285-0502-ae87-1a4b-0303c41d682b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 26a42d9a-9144-43be-bc55-0474b75229f7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83285-0502-ae87-1a4b-0303c41d682b?request_guid=26a42d9a-9144-43be-bc55-0474b75229f7 HTTP/1.1" 200 1847 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83285-0502-ae87-1a4b-0303c41d682b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 22711d61-78bb-46a3-b748-d0bca25fe0b4 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83285-0502-ae87-1a4b-0303c41d682b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83285-0502-ae87-1a4b-0303c41d682b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5d8fe511-2001-48dd-96fd-447a54469c15 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=22711d61-78bb-46a3-b748-d0bca25fe0b4&request_guid=5d8fe511-2001-48dd-96fd-447a54469c15 HTTP/1.1" 200 2765 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83285-0502-ad67-1a4b-0303c41d590f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83285-0502-ad67-1a4b-0303c41d590f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: b4a63bb9-4097-4f38-8afe-62f6732acb05 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0bbff838-3101-4637-a4dc-f41c4dca7f50 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b4a63bb9-4097-4f38-8afe-62f6732acb05&request_guid=0bbff838-3101-4637-a4dc-f41c4dca7f50 HTTP/1.1" 200 2506 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83285-0502-ad67-1a4b-0303c41d591b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83285-0502-ad67-1a4b-0303c41d591b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83285-0502-ad67-1a4b-0303c41d591b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3882fb48-4941-4401-9cfa-b971161340e6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83285-0502-ad67-1a4b-0303c41d591b?request_guid=3882fb48-4941-4401-9cfa-b971161340e6 HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83285-0502-ad67-1a4b-0303c41d591b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1672335f-905c-4149-a3e8-710ff2cd8e59 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83285-0502-ad67-1a4b-0303c41d591b?request_guid=1672335f-905c-4149-a3e8-710ff2cd8e59 HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83285-0502-ad67-1a4b-0303c41d591b'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 14e82df4-8073-42cc-9eb4-f4df39c73091 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83285-0502-ad67-1a4b-0303c41d591b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83285-0502-ad67-1a4b-0303c41d591b'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 933a42e8-68d1-48ad-ba8f-224ed874f5dc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=14e82df4-8073-42cc-9eb4-f4df39c73091&request_guid=933a42e8-68d1-48ad-ba8f-224ed874f5dc HTTP/1.1" 200 2505 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83285-0502-ae7f-1a4b-0303c41d72df +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83285-0502-ae7f-1a4b-0303c41d72df +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: bc530a78-5267-4dbc-a703-7dda1491d526 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bba8fbca-7a6d-4b92-847b-a78fec059a75 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=bc530a78-5267-4dbc-a703-7dda1491d526&request_guid=bba8fbca-7a6d-4b92-847b-a78fec059a75 HTTP/1.1" 200 2814 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83285-0502-ad67-1a4b-0303c41d595f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83285-0502-ad67-1a4b-0303c41d595f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83285-0502-ad67-1a4b-0303c41d595f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: db0e139c-6522-4049-a703-1105f1538484 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83285-0502-ad67-1a4b-0303c41d595f?request_guid=db0e139c-6522-4049-a703-1105f1538484 HTTP/1.1" 200 1672 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83285-0502-ad67-1a4b-0303c41d595f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3dbd9154-6129-4ff6-ac86-6c9803d1da79 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83285-0502-ad67-1a4b-0303c41d595f?request_guid=3dbd9154-6129-4ff6-ac86-6c9803d1da79 HTTP/1.1" 200 1672 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83285-0502-ad67-1a4b-0303c41d595f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 17fade91-2768-47d9-ab37-f13733903b27 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83285-0502-ad67-1a4b-0303c41d595f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83285-0502-ad67-1a4b-0303c41d595f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7537413c-4a99-476d-937a-539e273b8a3d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=17fade91-2768-47d9-ab37-f13733903b27&request_guid=7537413c-4a99-476d-937a-539e273b8a3d HTTP/1.1" 200 2815 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83285-0502-ae7f-1a4b-0303c41d72f7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83285-0502-ae7f-1a4b-0303c41d72f7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:37:52] "GET /sfexec?csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:37:52] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:37:52] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:37:53] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:37:53] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 146.3s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 146.3s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 146.3s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=2c391b11-c089-4eab-ad57-af16f6703761 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 95ea5596-74dc-488f-8821-97db4c41312a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=2c391b11-c089-4eab-ad57-af16f6703761&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=95ea5596-74dc-488f-8821-97db4c41312a HTTP/1.1" 200 1556 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=b47e2c43-8665-4f07-a1d8-e07260a0fdae +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9ed4c5ee-cac3-47f2-bc55-27db455a7006 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=b47e2c43-8665-4f07-a1d8-e07260a0fdae&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=9ed4c5ee-cac3-47f2-bc55-27db455a7006 HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 51.09s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: fe45d369-d7b8-4c2c-b71f-2cfcd4ca09ee +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b70f6d91-39d6-4f33-bd6a-9ad3676aed5c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=fe45d369-d7b8-4c2c-b71f-2cfcd4ca09ee&request_guid=b70f6d91-39d6-4f33-bd6a-9ad3676aed5c HTTP/1.1" 200 2767 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83286-0502-ae87-1a4b-0303c41da293 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83286-0502-ae87-1a4b-0303c41da293 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83286-0502-ae87-1a4b-0303c41da293' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b49591b1-48bc-466c-b5de-56a8834313b5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83286-0502-ae87-1a4b-0303c41da293?request_guid=b49591b1-48bc-466c-b5de-56a8834313b5 HTTP/1.1" 200 1853 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83286-0502-ae87-1a4b-0303c41da293' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 20d91b01-aeb2-47a8-b2c8-a49d8ba0e4f7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83286-0502-ae87-1a4b-0303c41da293?request_guid=20d91b01-aeb2-47a8-b2c8-a49d8ba0e4f7 HTTP/1.1" 200 1853 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83286-0502-ae87-1a4b-0303c41da293'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: deb97239-3b4c-494c-aead-f5b71b3a8e2d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83286-0502-ae87-1a4b-0303c41da293'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83286-0502-ae87-1a4b-0303c41da293'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 04ddc167-49e2-4fef-8481-07b7e2fab7b9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=deb97239-3b4c-494c-aead-f5b71b3a8e2d&request_guid=04ddc167-49e2-4fef-8481-07b7e2fab7b9 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83286-0502-ae7f-1a4b-0303c41d7d2f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83286-0502-ae7f-1a4b-0303c41d7d2f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 2175112f-beee-4f8f-baf8-9cd18fd9cf0c +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 28d32630-4a87-4a51-a5b9-ea0115be7144 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2175112f-beee-4f8f-baf8-9cd18fd9cf0c&request_guid=28d32630-4a87-4a51-a5b9-ea0115be7144 HTTP/1.1" 200 2509 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83286-0502-ae7a-1a4b-0303c41d8ad7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83286-0502-ae7a-1a4b-0303c41d8ad7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83286-0502-ae7a-1a4b-0303c41d8ad7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 528ebaa5-9ecb-440b-8d54-32021b44d1ad +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83286-0502-ae7a-1a4b-0303c41d8ad7?request_guid=528ebaa5-9ecb-440b-8d54-32021b44d1ad HTTP/1.1" 200 2163 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83286-0502-ae7a-1a4b-0303c41d8ad7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9599cf1c-3460-4135-901d-498a6ba7d177 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83286-0502-ae7a-1a4b-0303c41d8ad7?request_guid=9599cf1c-3460-4135-901d-498a6ba7d177 HTTP/1.1" 200 2162 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83286-0502-ae7a-1a4b-0303c41d8ad7'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 0008150e-8a6e-411b-90f8-03c5e570ab3a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83286-0502-ae7a-1a4b-0303c41d8ad7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83286-0502-ae7a-1a4b-0303c41d8ad7'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 894b9a72-f3ec-4278-a946-ec9a8f77f51d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0008150e-8a6e-411b-90f8-03c5e570ab3a&request_guid=894b9a72-f3ec-4278-a946-ec9a8f77f51d HTTP/1.1" 200 2507 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83286-0502-ae7f-1a4b-0303c41d7d63 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83286-0502-ae7f-1a4b-0303c41d7d63 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: b3713811-f138-4422-99e3-480341ac18b2 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ac45b7ea-191a-499a-95a9-7db069378cc3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b3713811-f138-4422-99e3-480341ac18b2&request_guid=ac45b7ea-191a-499a-95a9-7db069378cc3 HTTP/1.1" 200 2814 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83286-0502-ad67-1a4b-0303c41db2d3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83286-0502-ad67-1a4b-0303c41db2d3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83286-0502-ad67-1a4b-0303c41db2d3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: efbfeab9-e02b-4324-887d-e3d986e8bca7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83286-0502-ad67-1a4b-0303c41db2d3?request_guid=efbfeab9-e02b-4324-887d-e3d986e8bca7 HTTP/1.1" 200 1679 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83286-0502-ad67-1a4b-0303c41db2d3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1e6360de-75c1-4ca8-a7eb-4e0e8d6a1801 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83286-0502-ad67-1a4b-0303c41db2d3?request_guid=1e6360de-75c1-4ca8-a7eb-4e0e8d6a1801 HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83286-0502-ad67-1a4b-0303c41db2d3'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 2fcaaeaf-7ce5-422f-bb51-6cf232e403e6 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83286-0502-ad67-1a4b-0303c41db2d3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83286-0502-ad67-1a4b-0303c41db2d3'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 04b633b9-85c5-47e3-8a88-ad69f0ea794b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2fcaaeaf-7ce5-422f-bb51-6cf232e403e6&request_guid=04b633b9-85c5-47e3-8a88-ad69f0ea794b HTTP/1.1" 200 2815 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83286-0502-ae7f-1a4b-0303c41d7d77 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83286-0502-ae7f-1a4b-0303c41d7d77 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 13.43s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 13.44s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 13.44s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=6b278c1d-3078-4a3d-a73a-20e74e0f4bd1 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 79df587a-cdc3-40e2-8d00-76157a4e576e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2276181220688 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2276181220688 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2276181618800 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2276181618800 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2276181618800 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2276181618800 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2276181220688 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2276181220688 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=6b278c1d-3078-4a3d-a73a-20e74e0f4bd1&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=79df587a-cdc3-40e2-8d00-76157a4e576e HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=9ef8506a-a419-4054-afbe-4f7f182f4ebe +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 340ea411-6a1c-4065-95f6-a807a38030fb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=9ef8506a-a419-4054-afbe-4f7f182f4ebe&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=340ea411-6a1c-4065-95f6-a807a38030fb HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00345s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: f9ad9e09-205b-4189-93f1-7d61c05cf215 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5da0eb6a-2dd8-4a34-820e-52ef4898c041 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f9ad9e09-205b-4189-93f1-7d61c05cf215&request_guid=5da0eb6a-2dd8-4a34-820e-52ef4898c041 HTTP/1.1" 200 2765 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83288-0502-ae7a-1a4b-0303c41e231b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83288-0502-ae7a-1a4b-0303c41e231b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83288-0502-ae7a-1a4b-0303c41e231b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bab92b94-6f75-445f-b344-dad016bafefd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83288-0502-ae7a-1a4b-0303c41e231b?request_guid=bab92b94-6f75-445f-b344-dad016bafefd HTTP/1.1" 200 1852 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83288-0502-ae7a-1a4b-0303c41e231b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4e687b16-6bea-4d3e-b60d-93fdb05a774a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83288-0502-ae7a-1a4b-0303c41e231b?request_guid=4e687b16-6bea-4d3e-b60d-93fdb05a774a HTTP/1.1" 200 1849 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83288-0502-ae7a-1a4b-0303c41e231b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: ba1c9715-adb0-49f8-999d-145dfc42ed73 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83288-0502-ae7a-1a4b-0303c41e231b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83288-0502-ae7a-1a4b-0303c41e231b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1c4160d4-e931-4daa-944a-e0c2d24040ed +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ba1c9715-adb0-49f8-999d-145dfc42ed73&request_guid=1c4160d4-e931-4daa-944a-e0c2d24040ed HTTP/1.1" 200 2766 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83288-0502-ad67-1a4b-0303c41e0a1b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83288-0502-ad67-1a4b-0303c41e0a1b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 6a92d46f-23df-4bed-9814-a1cf59b55e94 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 429cc804-f234-4b0f-a276-56fb3e72c44c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6a92d46f-23df-4bed-9814-a1cf59b55e94&request_guid=429cc804-f234-4b0f-a276-56fb3e72c44c HTTP/1.1" 200 2511 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83288-0502-ae87-1a4b-0303c41dfaf7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83288-0502-ae87-1a4b-0303c41dfaf7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83288-0502-ae87-1a4b-0303c41dfaf7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8a4a99cd-c820-4ba4-a02b-6d63c29ddf85 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83288-0502-ae87-1a4b-0303c41dfaf7?request_guid=8a4a99cd-c820-4ba4-a02b-6d63c29ddf85 HTTP/1.1" 200 2180 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83288-0502-ae87-1a4b-0303c41dfaf7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f66830e3-a040-4939-a619-f9b4af195c3a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83288-0502-ae87-1a4b-0303c41dfaf7?request_guid=f66830e3-a040-4939-a619-f9b4af195c3a HTTP/1.1" 200 2180 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83288-0502-ae87-1a4b-0303c41dfaf7'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 03427b91-a8de-46ff-a869-1564f950c1a6 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83288-0502-ae87-1a4b-0303c41dfaf7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83288-0502-ae87-1a4b-0303c41dfaf7'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f30df7c3-b004-4581-a334-994e23e451c8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=03427b91-a8de-46ff-a869-1564f950c1a6&request_guid=f30df7c3-b004-4581-a334-994e23e451c8 HTTP/1.1" 200 2505 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83288-0502-ae2c-1a4b-0303c41e3523 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83288-0502-ae2c-1a4b-0303c41e3523 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: ac7ef7c9-d2cf-4522-8082-8422624c638b +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a7aefc2b-911b-4ebe-8218-b05cee8263bc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ac7ef7c9-d2cf-4522-8082-8422624c638b&request_guid=a7aefc2b-911b-4ebe-8218-b05cee8263bc HTTP/1.1" 200 2814 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83288-0502-ad67-1a4b-0303c41e0b3f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83288-0502-ad67-1a4b-0303c41e0b3f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83288-0502-ad67-1a4b-0303c41e0b3f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3c5facee-644b-49ec-bd74-fd4d69c69e8d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83288-0502-ad67-1a4b-0303c41e0b3f?request_guid=3c5facee-644b-49ec-bd74-fd4d69c69e8d HTTP/1.1" 200 1672 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83288-0502-ad67-1a4b-0303c41e0b3f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 225945ba-bf93-45da-94d0-c640966d204f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83288-0502-ad67-1a4b-0303c41e0b3f?request_guid=225945ba-bf93-45da-94d0-c640966d204f HTTP/1.1" 200 1672 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83288-0502-ad67-1a4b-0303c41e0b3f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 5a804242-a14b-4198-980d-ea23e1771a3d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83288-0502-ad67-1a4b-0303c41e0b3f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83288-0502-ad67-1a4b-0303c41e0b3f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1e5bdc89-ec55-4c65-b520-e92a05fa5d57 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5a804242-a14b-4198-980d-ea23e1771a3d&request_guid=1e5bdc89-ec55-4c65-b520-e92a05fa5d57 HTTP/1.1" 200 2816 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83288-0502-ae87-1a4b-0303c41dfbbb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83288-0502-ae87-1a4b-0303c41dfbbb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3321s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3386s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3432s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=07f1c088-7cbf-47fc-9297-a53b1ef66742 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 996afc79-71f6-485e-9e62-952989418b16 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2285467574688 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2285467574688 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2285467972800 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2285467972800 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2285467972800 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2285467972800 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2285467574688 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2285467574688 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=07f1c088-7cbf-47fc-9297-a53b1ef66742&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=996afc79-71f6-485e-9e62-952989418b16 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=f06cdebd-d103-4904-ae0e-12b51edb68e8 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d66f93b7-3470-402a-bbff-2f66b710fa57 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=f06cdebd-d103-4904-ae0e-12b51edb68e8&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=d66f93b7-3470-402a-bbff-2f66b710fa57 HTTP/1.1" 200 1558 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00245s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: b750de15-8662-4e69-8fd1-31c75ac9de63 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f4082a59-0a8b-46bb-9a16-fbc5b515ff08 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b750de15-8662-4e69-8fd1-31c75ac9de63&request_guid=f4082a59-0a8b-46bb-9a16-fbc5b515ff08 HTTP/1.1" 200 2765 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8328c-0502-ae7a-1a4b-0303c41f1d8f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8328c-0502-ae7a-1a4b-0303c41f1d8f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8328c-0502-ae7a-1a4b-0303c41f1d8f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6f48c7bc-f59e-4e89-93e2-149361cba5fe +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8328c-0502-ae7a-1a4b-0303c41f1d8f?request_guid=6f48c7bc-f59e-4e89-93e2-149361cba5fe HTTP/1.1" 200 1866 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8328c-0502-ae7a-1a4b-0303c41f1d8f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 65f9c66c-b9d8-4835-ac12-458159237169 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8328c-0502-ae7a-1a4b-0303c41f1d8f?request_guid=65f9c66c-b9d8-4835-ac12-458159237169 HTTP/1.1" 200 1867 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8328c-0502-ae7a-1a4b-0303c41f1d8f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 3b00b6ea-fb1b-4e17-adb7-8fa67ac4a871 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8328c-0502-ae7a-1a4b-0303c41f1d8f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8328c-0502-ae7a-1a4b-0303c41f1d8f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 65cbac0b-0c81-49a7-80d6-c91f9ad09bab +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3b00b6ea-fb1b-4e17-adb7-8fa67ac4a871&request_guid=65cbac0b-0c81-49a7-80d6-c91f9ad09bab HTTP/1.1" 200 2764 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8328c-0502-ae2c-1a4b-0303c41f2e93 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8328c-0502-ae2c-1a4b-0303c41f2e93 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 539797b5-efb4-47b6-84e4-5142fda7aef3 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 558c710a-2b3b-4dcf-9cbd-82d18e5f0b03 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=539797b5-efb4-47b6-84e4-5142fda7aef3&request_guid=558c710a-2b3b-4dcf-9cbd-82d18e5f0b03 HTTP/1.1" 200 2507 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8328c-0502-ad67-1a4b-0303c41f463f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8328c-0502-ad67-1a4b-0303c41f463f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8328c-0502-ad67-1a4b-0303c41f463f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9db7752f-6a2d-4259-81eb-235197743e96 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8328c-0502-ad67-1a4b-0303c41f463f?request_guid=9db7752f-6a2d-4259-81eb-235197743e96 HTTP/1.1" 200 2187 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8328c-0502-ad67-1a4b-0303c41f463f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3d5d8665-414b-41d7-92f4-08acf20018af +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8328c-0502-ad67-1a4b-0303c41f463f?request_guid=3d5d8665-414b-41d7-92f4-08acf20018af HTTP/1.1" 200 2188 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8328c-0502-ad67-1a4b-0303c41f463f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: f6fc16ab-7ebf-4664-8e00-6036097c3023 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8328c-0502-ad67-1a4b-0303c41f463f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8328c-0502-ad67-1a4b-0303c41f463f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 42619da1-a1d5-415d-aa11-120b95bbafef +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f6fc16ab-7ebf-4664-8e00-6036097c3023&request_guid=42619da1-a1d5-415d-aa11-120b95bbafef HTTP/1.1" 200 2504 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8328c-0502-ae7f-1a4b-0303c41f0f93 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8328c-0502-ae7f-1a4b-0303c41f0f93 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 3e8b70a5-d616-403c-a0fe-d156700085bc +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c7e48e4c-8fa2-4575-bf5f-d539be67a074 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3e8b70a5-d616-403c-a0fe-d156700085bc&request_guid=c7e48e4c-8fa2-4575-bf5f-d539be67a074 HTTP/1.1" 200 2816 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8328c-0502-ae87-1a4b-0303c41f36cf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8328c-0502-ae87-1a4b-0303c41f36cf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8328c-0502-ae87-1a4b-0303c41f36cf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c2647e54-0c1a-47b4-92d9-b41278f8761a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8328c-0502-ae87-1a4b-0303c41f36cf?request_guid=c2647e54-0c1a-47b4-92d9-b41278f8761a HTTP/1.1" 200 1672 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8328c-0502-ae87-1a4b-0303c41f36cf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 47d8a92d-b846-4f01-af6d-52a4390f2482 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8328c-0502-ae87-1a4b-0303c41f36cf?request_guid=47d8a92d-b846-4f01-af6d-52a4390f2482 HTTP/1.1" 200 1671 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8328c-0502-ae87-1a4b-0303c41f36cf'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 56d96b4c-3ae5-4cf4-9ccc-fd7950b704dd +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8328c-0502-ae87-1a4b-0303c41f36cf'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8328c-0502-ae87-1a4b-0303c41f36cf'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6a9315ef-9cf1-4c8c-8245-b0874152d3ad +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=56d96b4c-3ae5-4cf4-9ccc-fd7950b704dd&request_guid=6a9315ef-9cf1-4c8c-8245-b0874152d3ad HTTP/1.1" 200 2813 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8328c-0502-ad67-1a4b-0303c41f469b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8328c-0502-ad67-1a4b-0303c41f469b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.9303s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.9383s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 1.033s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=46b91ee3-f38c-4e80-8622-db77fb713a07 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9f1a22b3-759e-439e-9251-41f2fd99efb6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1684102668560 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1684102668560 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1684103066672 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1684103066672 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1684103066672 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1684103066672 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1684102668560 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1684102668560 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=46b91ee3-f38c-4e80-8622-db77fb713a07&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=9f1a22b3-759e-439e-9251-41f2fd99efb6 HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=e7e5d133-110c-477e-b35f-8413dda4ebca +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: dfd58f6a-4704-4173-a150-fae9fde0ac35 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=e7e5d133-110c-477e-b35f-8413dda4ebca&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=dfd58f6a-4704-4173-a150-fae9fde0ac35 HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00341s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 04931fe8-1104-40c7-a1b7-2f1b4a8b860a +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5799d334-18b8-46cc-b340-e374b06b564a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=04931fe8-1104-40c7-a1b7-2f1b4a8b860a&request_guid=5799d334-18b8-46cc-b340-e374b06b564a HTTP/1.1" 200 2761 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8328f-0502-ae2c-1a4b-0303c41ff9bb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8328f-0502-ae2c-1a4b-0303c41ff9bb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8328f-0502-ae2c-1a4b-0303c41ff9bb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 959b3e00-4769-4ebc-9522-47553a36e81b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8328f-0502-ae2c-1a4b-0303c41ff9bb?request_guid=959b3e00-4769-4ebc-9522-47553a36e81b HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8328f-0502-ae2c-1a4b-0303c41ff9bb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 06a3ddd4-ba4e-46c8-a89c-9db1dbc9858f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8328f-0502-ae2c-1a4b-0303c41ff9bb?request_guid=06a3ddd4-ba4e-46c8-a89c-9db1dbc9858f HTTP/1.1" 200 1849 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8328f-0502-ae2c-1a4b-0303c41ff9bb'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 8bac8a94-32fb-4a06-adba-db56b8dd5666 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8328f-0502-ae2c-1a4b-0303c41ff9bb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8328f-0502-ae2c-1a4b-0303c41ff9bb'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 07e985ca-eb14-4b1c-b738-87516cf7ab33 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=8bac8a94-32fb-4a06-adba-db56b8dd5666&request_guid=07e985ca-eb14-4b1c-b738-87516cf7ab33 HTTP/1.1" 200 2762 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8328f-0502-ae7a-1a4b-0303c42016fb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8328f-0502-ae7a-1a4b-0303c42016fb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 876e2e64-ff65-4b21-be40-aaa0cfa81a32 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1a42c5db-8b04-4526-93bc-656a2fb83734 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=876e2e64-ff65-4b21-be40-aaa0cfa81a32&request_guid=1a42c5db-8b04-4526-93bc-656a2fb83734 HTTP/1.1" 200 2507 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8328f-0502-ae7f-1a4b-0303c42006db +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8328f-0502-ae7f-1a4b-0303c42006db +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8328f-0502-ae7f-1a4b-0303c42006db' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6bad14a4-45ab-45d5-81c1-c712eee0c8d4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8328f-0502-ae7f-1a4b-0303c42006db?request_guid=6bad14a4-45ab-45d5-81c1-c712eee0c8d4 HTTP/1.1" 200 2167 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8328f-0502-ae7f-1a4b-0303c42006db' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8f7b2411-5464-4af8-b20a-433388709089 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8328f-0502-ae7f-1a4b-0303c42006db?request_guid=8f7b2411-5464-4af8-b20a-433388709089 HTTP/1.1" 200 2166 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8328f-0502-ae7f-1a4b-0303c42006db'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 53834fc8-8903-46b2-8256-816c711df6a3 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8328f-0502-ae7f-1a4b-0303c42006db'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8328f-0502-ae7f-1a4b-0303c42006db'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b8209985-a9c6-45ab-a068-687a256c8073 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=53834fc8-8903-46b2-8256-816c711df6a3&request_guid=b8209985-a9c6-45ab-a068-687a256c8073 HTTP/1.1" 200 2507 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8328f-0502-ae2c-1a4b-0303c41ffa7b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8328f-0502-ae2c-1a4b-0303c41ffa7b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: cc15af1c-03ae-4483-98c3-fbb6f7faa9c4 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 008963b3-fc66-4e2f-9b30-47512ac5a8ef +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cc15af1c-03ae-4483-98c3-fbb6f7faa9c4&request_guid=008963b3-fc66-4e2f-9b30-47512ac5a8ef HTTP/1.1" 200 2815 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8328f-0502-ae7f-1a4b-0303c4200707 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8328f-0502-ae7f-1a4b-0303c4200707 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8328f-0502-ae7f-1a4b-0303c4200707' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3503e59b-2f6f-414c-b546-9ddc8265e69d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8328f-0502-ae7f-1a4b-0303c4200707?request_guid=3503e59b-2f6f-414c-b546-9ddc8265e69d HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8328f-0502-ae7f-1a4b-0303c4200707' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 923157b0-227a-46f1-8135-c5ba5f0d555d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8328f-0502-ae7f-1a4b-0303c4200707?request_guid=923157b0-227a-46f1-8135-c5ba5f0d555d HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8328f-0502-ae7f-1a4b-0303c4200707'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 0e7d2bf6-7dbd-4578-a17f-fb3e5253928b +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8328f-0502-ae7f-1a4b-0303c4200707'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8328f-0502-ae7f-1a4b-0303c4200707'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d448a9f0-9616-4cc2-bd06-49ec25abe0be +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0e7d2bf6-7dbd-4578-a17f-fb3e5253928b&request_guid=d448a9f0-9616-4cc2-bd06-49ec25abe0be HTTP/1.1" 200 2813 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8328f-0502-ae2c-1a4b-0303c41ffaa3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8328f-0502-ae2c-1a4b-0303c41ffaa3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:47:24] "GET /sfexec?csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&submit=Submit HTTP/1.1" 500 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 37.52s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 37.53s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 37.54s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=5a74ac14-897f-402a-b0db-deb8a04fe2eb +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a1608b50-f6dd-4581-9f2a-27b26061ca08 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=5a74ac14-897f-402a-b0db-deb8a04fe2eb&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=a1608b50-f6dd-4581-9f2a-27b26061ca08 HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=e44edd9a-0a5a-46ba-adc1-6ce6a9e0935b +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9e1affa5-ceaa-4014-958f-7880a7c208ff +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=e44edd9a-0a5a-46ba-adc1-6ce6a9e0935b&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=9e1affa5-ceaa-4014-958f-7880a7c208ff HTTP/1.1" 200 1556 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 36.24s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: b816e98e-f215-4015-ac39-f203f24e3a6c +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3baaeb63-98a9-4b8e-b2c3-f215ca7cc944 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b816e98e-f215-4015-ac39-f203f24e3a6c&request_guid=3baaeb63-98a9-4b8e-b2c3-f215ca7cc944 HTTP/1.1" 200 2767 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8328f-0502-ae87-1a4b-0303c42025a3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8328f-0502-ae87-1a4b-0303c42025a3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8328f-0502-ae87-1a4b-0303c42025a3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0c6dd6c7-574e-47d3-a5ce-aedaebbbb48d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8328f-0502-ae87-1a4b-0303c42025a3?request_guid=0c6dd6c7-574e-47d3-a5ce-aedaebbbb48d HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8328f-0502-ae87-1a4b-0303c42025a3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c4a21b2d-9ab3-48b0-9564-2b39f1113e0a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8328f-0502-ae87-1a4b-0303c42025a3?request_guid=c4a21b2d-9ab3-48b0-9564-2b39f1113e0a HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8328f-0502-ae87-1a4b-0303c42025a3'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 5f46e336-1ae6-4207-9315-80ea055698f7 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8328f-0502-ae87-1a4b-0303c42025a3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8328f-0502-ae87-1a4b-0303c42025a3'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 15e445a3-081c-4158-9774-8420c5b76dd6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5f46e336-1ae6-4207-9315-80ea055698f7&request_guid=15e445a3-081c-4158-9774-8420c5b76dd6 HTTP/1.1" 200 2765 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8328f-0502-ae7f-1a4b-0303c4200c9b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8328f-0502-ae7f-1a4b-0303c4200c9b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 9694665e-e891-4ffd-b3ee-b0847c805976 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ecdb562b-1c2c-4cc4-adb9-154b23ebbe7b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=9694665e-e891-4ffd-b3ee-b0847c805976&request_guid=ecdb562b-1c2c-4cc4-adb9-154b23ebbe7b HTTP/1.1" 200 2507 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8328f-0502-ad67-1a4b-0303c42035f7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8328f-0502-ad67-1a4b-0303c42035f7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8328f-0502-ad67-1a4b-0303c42035f7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: afdb6716-889b-4d6f-bf3f-85a7d9a1bcf3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8328f-0502-ad67-1a4b-0303c42035f7?request_guid=afdb6716-889b-4d6f-bf3f-85a7d9a1bcf3 HTTP/1.1" 200 2170 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8328f-0502-ad67-1a4b-0303c42035f7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9f90949e-cbea-4543-bf5d-cbd18aca1cd9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8328f-0502-ad67-1a4b-0303c42035f7?request_guid=9f90949e-cbea-4543-bf5d-cbd18aca1cd9 HTTP/1.1" 200 2170 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8328f-0502-ad67-1a4b-0303c42035f7'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: d808ef82-1f7f-4029-930e-cd349a671f4f +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8328f-0502-ad67-1a4b-0303c42035f7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8328f-0502-ad67-1a4b-0303c42035f7'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a858e0be-fff8-4c06-841a-122e42739685 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d808ef82-1f7f-4029-930e-cd349a671f4f&request_guid=a858e0be-fff8-4c06-841a-122e42739685 HTTP/1.1" 200 2506 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8328f-0502-ad67-1a4b-0303c4203617 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8328f-0502-ad67-1a4b-0303c4203617 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: a33d5835-f931-40ec-acf9-4e071f3d7e7f +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a258fd5d-1930-4b33-b29d-17462b11d9de +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a33d5835-f931-40ec-acf9-4e071f3d7e7f&request_guid=a258fd5d-1930-4b33-b29d-17462b11d9de HTTP/1.1" 200 2818 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8328f-0502-ae87-1a4b-0303c420260b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8328f-0502-ae87-1a4b-0303c420260b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8328f-0502-ae87-1a4b-0303c420260b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8c233b14-9e14-4894-a0a3-7fe96ba6ca61 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8328f-0502-ae87-1a4b-0303c420260b?request_guid=8c233b14-9e14-4894-a0a3-7fe96ba6ca61 HTTP/1.1" 200 1676 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8328f-0502-ae87-1a4b-0303c420260b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 48c047f6-335e-4ad6-b720-5bc26d754b56 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8328f-0502-ae87-1a4b-0303c420260b?request_guid=48c047f6-335e-4ad6-b720-5bc26d754b56 HTTP/1.1" 200 1675 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8328f-0502-ae87-1a4b-0303c420260b'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 2efe8e8c-abe1-4871-9a1f-c495e93a91a9 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8328f-0502-ae87-1a4b-0303c420260b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8328f-0502-ae87-1a4b-0303c420260b'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1abdf0f8-4ae3-4ef5-aca0-a7772cdffa2b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2efe8e8c-abe1-4871-9a1f-c495e93a91a9&request_guid=1abdf0f8-4ae3-4ef5-aca0-a7772cdffa2b HTTP/1.1" 200 2815 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8328f-0502-ad67-1a4b-0303c4203637 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8328f-0502-ad67-1a4b-0303c4203637 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:47:57] "GET /sfexec?csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:47:58] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:47:58] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:47:58] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:47:58] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 175.4s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 175.4s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 175.4s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=ff619d56-ee07-4bce-9c15-7e932eb5a478 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 84030396-8be7-4ca9-afa8-320e68d258b5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2548738759968 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2548738759968 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2548739174464 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2548739174464 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2548739174464 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2548739174464 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2548738759968 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2548738759968 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=ff619d56-ee07-4bce-9c15-7e932eb5a478&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=84030396-8be7-4ca9-afa8-320e68d258b5 HTTP/1.1" 200 1559 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=faf65e35-2711-4914-b7f2-2fc9dd72a1ee +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f0dcc642-6ba6-4d5c-a13a-0332b9521b6a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=faf65e35-2711-4914-b7f2-2fc9dd72a1ee&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=f0dcc642-6ba6-4d5c-a13a-0332b9521b6a HTTP/1.1" 200 1558 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00223s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 6212b746-2dd6-493d-ba79-c0905e7263b6 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 254983b1-3230-4187-a82b-6ad94972e1ae +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6212b746-2dd6-493d-ba79-c0905e7263b6&request_guid=254983b1-3230-4187-a82b-6ad94972e1ae HTTP/1.1" 200 2762 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83294-0502-ae2c-1a4b-0303c421326f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83294-0502-ae2c-1a4b-0303c421326f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83294-0502-ae2c-1a4b-0303c421326f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 060f13d3-2cc4-4977-a4bc-c9e3cecd6aaa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83294-0502-ae2c-1a4b-0303c421326f?request_guid=060f13d3-2cc4-4977-a4bc-c9e3cecd6aaa HTTP/1.1" 200 1852 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83294-0502-ae2c-1a4b-0303c421326f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7f9f8396-f1a7-46ac-a5c9-03dcd10aefef +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83294-0502-ae2c-1a4b-0303c421326f?request_guid=7f9f8396-f1a7-46ac-a5c9-03dcd10aefef HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83294-0502-ae2c-1a4b-0303c421326f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 557b0fda-7c1f-4573-8713-faa8298d3485 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83294-0502-ae2c-1a4b-0303c421326f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83294-0502-ae2c-1a4b-0303c421326f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 44174156-faee-4cc8-9e4f-14945d26be65 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=557b0fda-7c1f-4573-8713-faa8298d3485&request_guid=44174156-faee-4cc8-9e4f-14945d26be65 HTTP/1.1" 200 2764 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83294-0502-ae87-1a4b-0303c421192f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83294-0502-ae87-1a4b-0303c421192f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 608bd70a-4775-44ef-a090-1133d0e71328 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ff5cfd00-0195-4bc4-ba9f-c12327d2d618 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=608bd70a-4775-44ef-a090-1133d0e71328&request_guid=ff5cfd00-0195-4bc4-ba9f-c12327d2d618 HTTP/1.1" 200 2507 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83294-0502-ae7f-1a4b-0303c42141cb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83294-0502-ae7f-1a4b-0303c42141cb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83294-0502-ae7f-1a4b-0303c42141cb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6c6ee732-a27c-4f37-8e25-49d6005a0c18 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83294-0502-ae7f-1a4b-0303c42141cb?request_guid=6c6ee732-a27c-4f37-8e25-49d6005a0c18 HTTP/1.1" 200 2166 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83294-0502-ae7f-1a4b-0303c42141cb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d8c1835d-8809-49c8-b352-753dfc3c76a6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83294-0502-ae7f-1a4b-0303c42141cb?request_guid=d8c1835d-8809-49c8-b352-753dfc3c76a6 HTTP/1.1" 200 2165 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83294-0502-ae7f-1a4b-0303c42141cb'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: f6eadd7a-f9dc-4944-aba1-3a106a8447ad +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83294-0502-ae7f-1a4b-0303c42141cb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83294-0502-ae7f-1a4b-0303c42141cb'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 297785aa-f10a-47ae-8f46-4f298e57be09 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f6eadd7a-f9dc-4944-aba1-3a106a8447ad&request_guid=297785aa-f10a-47ae-8f46-4f298e57be09 HTTP/1.1" 200 2510 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83294-0502-ae7a-1a4b-0303c4215047 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83294-0502-ae7a-1a4b-0303c4215047 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: dc1fc1e1-33ae-481b-b44a-25b4494c73d6 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2ec72591-f885-478c-befd-a1cf2342310b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=dc1fc1e1-33ae-481b-b44a-25b4494c73d6&request_guid=2ec72591-f885-478c-befd-a1cf2342310b HTTP/1.1" 200 2817 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83294-0502-ae87-1a4b-0303c4211957 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83294-0502-ae87-1a4b-0303c4211957 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83294-0502-ae87-1a4b-0303c4211957' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a361d727-877d-425d-a37b-59c2516f0556 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83294-0502-ae87-1a4b-0303c4211957?request_guid=a361d727-877d-425d-a37b-59c2516f0556 HTTP/1.1" 200 1676 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83294-0502-ae87-1a4b-0303c4211957' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 00c565e1-75a5-4343-b6ad-b973d8725ee8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83294-0502-ae87-1a4b-0303c4211957?request_guid=00c565e1-75a5-4343-b6ad-b973d8725ee8 HTTP/1.1" 200 1675 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83294-0502-ae87-1a4b-0303c4211957'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: cce3fcfc-168e-4c9a-8444-dab55d9adb6c +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83294-0502-ae87-1a4b-0303c4211957'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83294-0502-ae87-1a4b-0303c4211957'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3c88a415-b1be-46d4-a7bc-92c5b249baed +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cce3fcfc-168e-4c9a-8444-dab55d9adb6c&request_guid=3c88a415-b1be-46d4-a7bc-92c5b249baed HTTP/1.1" 200 2814 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83294-0502-ad67-1a4b-0303c42128df +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83294-0502-ad67-1a4b-0303c42128df +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:52:23] "GET /sfexec?csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:52:24] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:52:24] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:52:24] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 312.4s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 312.4s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 312.4s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=c4000cec-5b93-4501-8785-bbdf2581abbb +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d970a943-d4e4-4f1e-aae1-8dcab3cfd9ef +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=c4000cec-5b93-4501-8785-bbdf2581abbb&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=d970a943-d4e4-4f1e-aae1-8dcab3cfd9ef HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=e1ec9b08-58b4-4d44-b9e0-398f4158bb85 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: dccba398-5d89-43fd-b4ae-bb070767b812 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=e1ec9b08-58b4-4d44-b9e0-398f4158bb85&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=dccba398-5d89-43fd-b4ae-bb070767b812 HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 136.7s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 9a55f03a-5170-424c-8b84-3812b7a3cc12 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 426044dd-4c64-460f-8669-3474fdb0158a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=9a55f03a-5170-424c-8b84-3812b7a3cc12&request_guid=426044dd-4c64-460f-8669-3474fdb0158a HTTP/1.1" 200 2767 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83296-0502-ae7f-1a4b-0303c421e11f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83296-0502-ae7f-1a4b-0303c421e11f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83296-0502-ae7f-1a4b-0303c421e11f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 642ff392-dbef-456b-87e9-dbcecfbd29f6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83296-0502-ae7f-1a4b-0303c421e11f?request_guid=642ff392-dbef-456b-87e9-dbcecfbd29f6 HTTP/1.1" 200 1848 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83296-0502-ae7f-1a4b-0303c421e11f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8a32722a-58c6-462b-8945-0c31f2180408 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83296-0502-ae7f-1a4b-0303c421e11f?request_guid=8a32722a-58c6-462b-8945-0c31f2180408 HTTP/1.1" 200 1849 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83296-0502-ae7f-1a4b-0303c421e11f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: d0f73639-ae95-4c18-bac9-2705819fe0a1 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83296-0502-ae7f-1a4b-0303c421e11f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83296-0502-ae7f-1a4b-0303c421e11f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c49297d3-fe65-40cb-a821-7290f2dec194 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d0f73639-ae95-4c18-bac9-2705819fe0a1&request_guid=c49297d3-fe65-40cb-a821-7290f2dec194 HTTP/1.1" 200 2766 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83296-0502-ae7f-1a4b-0303c421e163 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83296-0502-ae7f-1a4b-0303c421e163 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 7c51431e-b9f5-458c-8c95-19aae1b60c29 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 16871bd1-aa4a-4ebc-a58c-63cfe1474c30 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7c51431e-b9f5-458c-8c95-19aae1b60c29&request_guid=16871bd1-aa4a-4ebc-a58c-63cfe1474c30 HTTP/1.1" 200 2511 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83296-0502-ae87-1a4b-0303c421bc33 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83296-0502-ae87-1a4b-0303c421bc33 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83296-0502-ae87-1a4b-0303c421bc33' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7755e0f6-527f-419a-8404-f6806901c2a1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83296-0502-ae87-1a4b-0303c421bc33?request_guid=7755e0f6-527f-419a-8404-f6806901c2a1 HTTP/1.1" 200 2165 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83296-0502-ae87-1a4b-0303c421bc33' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 98f51c1c-d1d2-402c-8521-a06b92fc804b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83296-0502-ae87-1a4b-0303c421bc33?request_guid=98f51c1c-d1d2-402c-8521-a06b92fc804b HTTP/1.1" 200 2166 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83296-0502-ae87-1a4b-0303c421bc33'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: f272b4a3-a0d0-417f-9ff0-a4b9c01e84cc +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83296-0502-ae87-1a4b-0303c421bc33'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83296-0502-ae87-1a4b-0303c421bc33'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 79102f2c-e4bb-4359-848f-506b90bfe1de +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f272b4a3-a0d0-417f-9ff0-a4b9c01e84cc&request_guid=79102f2c-e4bb-4359-848f-506b90bfe1de HTTP/1.1" 200 2505 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83296-0502-ae2c-1a4b-0303c421d41f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83296-0502-ae2c-1a4b-0303c421d41f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 0d1b51e5-4dcd-4a98-a7b9-3f096725922c +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3ee895c7-d642-40ff-900b-d136219f25fa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0d1b51e5-4dcd-4a98-a7b9-3f096725922c&request_guid=3ee895c7-d642-40ff-900b-d136219f25fa HTTP/1.1" 200 2816 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83296-0502-ae7f-1a4b-0303c421e1a3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83296-0502-ae7f-1a4b-0303c421e1a3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83296-0502-ae7f-1a4b-0303c421e1a3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bc7d5f02-985c-4bd6-99cf-e7b791cd2c05 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83296-0502-ae7f-1a4b-0303c421e1a3?request_guid=bc7d5f02-985c-4bd6-99cf-e7b791cd2c05 HTTP/1.1" 200 1674 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83296-0502-ae7f-1a4b-0303c421e1a3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7c21d072-ee44-4e01-a085-9b56770d7608 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83296-0502-ae7f-1a4b-0303c421e1a3?request_guid=7c21d072-ee44-4e01-a085-9b56770d7608 HTTP/1.1" 200 1675 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83296-0502-ae7f-1a4b-0303c421e1a3'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 6ac2da6d-a3bb-46b2-855d-3babbd54d2a4 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83296-0502-ae7f-1a4b-0303c421e1a3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83296-0502-ae7f-1a4b-0303c421e1a3'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 549678a3-7fa9-48fe-a29d-15dd56e6b465 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6ac2da6d-a3bb-46b2-855d-3babbd54d2a4&request_guid=549678a3-7fa9-48fe-a29d-15dd56e6b465 HTTP/1.1" 200 2815 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83296-0502-ae7a-1a4b-0303c421ae8b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83296-0502-ae7a-1a4b-0303c421ae8b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:54:40] "GET /sfexec?csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:54:40] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:54:41] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:54:41] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 17.12s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 17.13s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 17.13s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=15dd1647-6405-482d-aaa4-cbbb67eb56b6 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f4c20917-8950-4b27-b5cb-363485b26f72 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1558458145984 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1558458145984 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1558458544096 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1558458544096 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1558458544096 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1558458544096 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1558458145984 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1558458145984 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=15dd1647-6405-482d-aaa4-cbbb67eb56b6&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=f4c20917-8950-4b27-b5cb-363485b26f72 HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=71d78fda-bdb0-4f8f-a0ee-bbe4074e2afc +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8412b0ca-f445-47c9-92f0-129df9ee1747 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=71d78fda-bdb0-4f8f-a0ee-bbe4074e2afc&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=8412b0ca-f445-47c9-92f0-129df9ee1747 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.01351s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 09ab4229-7e87-4a1e-acbb-4df0939d596b +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6b806e4b-3ebc-4f00-ac7e-fc39ad4333f1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=09ab4229-7e87-4a1e-acbb-4df0939d596b&request_guid=6b806e4b-3ebc-4f00-ac7e-fc39ad4333f1 HTTP/1.1" 200 2762 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83298-0502-ae2c-1a4b-0303c4222853 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83298-0502-ae2c-1a4b-0303c4222853 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83298-0502-ae2c-1a4b-0303c4222853' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6717bdb1-6106-46cd-bc4e-4b8af481d8ef +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83298-0502-ae2c-1a4b-0303c4222853?request_guid=6717bdb1-6106-46cd-bc4e-4b8af481d8ef HTTP/1.1" 200 1863 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83298-0502-ae2c-1a4b-0303c4222853' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e2a99baa-d3c7-4357-8f78-fe0267a543fe +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83298-0502-ae2c-1a4b-0303c4222853?request_guid=e2a99baa-d3c7-4357-8f78-fe0267a543fe HTTP/1.1" 200 1863 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83298-0502-ae2c-1a4b-0303c4222853'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: bf5bc14a-3ffa-419e-876f-163f0fcf0f45 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83298-0502-ae2c-1a4b-0303c4222853'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83298-0502-ae2c-1a4b-0303c4222853'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 872a63b6-6e82-49f2-9512-b70308d56dc8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=bf5bc14a-3ffa-419e-876f-163f0fcf0f45&request_guid=872a63b6-6e82-49f2-9512-b70308d56dc8 HTTP/1.1" 200 2761 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83298-0502-ae2c-1a4b-0303c4222887 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83298-0502-ae2c-1a4b-0303c4222887 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: b2420b69-0aa3-422a-9466-0caa50a76aae +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2dce2997-6b8d-49f8-99f8-0554ec66122b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b2420b69-0aa3-422a-9466-0caa50a76aae&request_guid=2dce2997-6b8d-49f8-99f8-0554ec66122b HTTP/1.1" 200 2504 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83298-0502-ae2c-1a4b-0303c422288f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83298-0502-ae2c-1a4b-0303c422288f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83298-0502-ae2c-1a4b-0303c422288f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b0ac0ac0-7335-47cb-bbf3-f5d8ad5c7f2d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83298-0502-ae2c-1a4b-0303c422288f?request_guid=b0ac0ac0-7335-47cb-bbf3-f5d8ad5c7f2d HTTP/1.1" 200 2161 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83298-0502-ae2c-1a4b-0303c422288f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 743c48a9-2322-4479-ac5f-85e93f0a6def +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83298-0502-ae2c-1a4b-0303c422288f?request_guid=743c48a9-2322-4479-ac5f-85e93f0a6def HTTP/1.1" 200 2163 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83298-0502-ae2c-1a4b-0303c422288f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 0a8c35db-db81-4460-9777-d66a0aad8da5 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83298-0502-ae2c-1a4b-0303c422288f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83298-0502-ae2c-1a4b-0303c422288f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 96fab8c6-5754-43f7-aa43-dcb8d9ed30b9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0a8c35db-db81-4460-9777-d66a0aad8da5&request_guid=96fab8c6-5754-43f7-aa43-dcb8d9ed30b9 HTTP/1.1" 200 2506 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83298-0502-ae7a-1a4b-0303c42244ff +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83298-0502-ae7a-1a4b-0303c42244ff +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 92554844-5ba4-48c4-89e1-2316bae8220a +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a16b7c32-0c83-4d2d-82fb-6e9a69feb345 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=92554844-5ba4-48c4-89e1-2316bae8220a&request_guid=a16b7c32-0c83-4d2d-82fb-6e9a69feb345 HTTP/1.1" 200 2815 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83298-0502-ad67-1a4b-0303c4221e9f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83298-0502-ad67-1a4b-0303c4221e9f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83298-0502-ad67-1a4b-0303c4221e9f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c8281a1f-4ce1-4e0a-a744-810e6e784c5f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83298-0502-ad67-1a4b-0303c4221e9f?request_guid=c8281a1f-4ce1-4e0a-a744-810e6e784c5f HTTP/1.1" 200 1683 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83298-0502-ad67-1a4b-0303c4221e9f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 57a4bb87-ce8c-45a6-bf59-31456a78f260 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83298-0502-ad67-1a4b-0303c4221e9f?request_guid=57a4bb87-ce8c-45a6-bf59-31456a78f260 HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83298-0502-ad67-1a4b-0303c4221e9f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: c0262b54-2f99-401e-a655-67467bf434ca +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83298-0502-ad67-1a4b-0303c4221e9f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83298-0502-ad67-1a4b-0303c4221e9f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 720890fa-4567-4c4d-b1ab-516be5ee8cdb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c0262b54-2f99-401e-a655-67467bf434ca&request_guid=720890fa-4567-4c4d-b1ab-516be5ee8cdb HTTP/1.1" 200 2812 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83298-0502-ae2c-1a4b-0303c422291f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83298-0502-ae2c-1a4b-0303c422291f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:56:05] "GET /sfexec?csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&csrf_token=IjYwMTg5Y2U5YTA0YWZkYjJkZmE5YmEzZGI2NWFmYWI3YjUwZGNhNzki.Y2vJHQ.-aSzU7lEmKVam6mUqLqP0hOd2rE&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:56:05] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:56:05] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [09/Nov/2022 11:56:05] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 153.3s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 153.3s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 153.3s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=accc026f-6d63-402c-81b9-8445a24dc440 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f2705077-3cef-4634-9e41-5533f4fdd0f8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=accc026f-6d63-402c-81b9-8445a24dc440&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=f2705077-3cef-4634-9e41-5533f4fdd0f8 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=a6691598-edb9-40fa-b5e6-951e7a3dca22 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f1d2fd1e-536c-4ba7-9dc1-d3d128d635b1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=a6691598-edb9-40fa-b5e6-951e7a3dca22&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=f1d2fd1e-536c-4ba7-9dc1-d3d128d635b1 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 135.7s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 831ba211-0f9e-47d5-b764-ff5baa2ddcb9 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 778abffd-f1af-4b61-9709-a46a1bc872f3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=831ba211-0f9e-47d5-b764-ff5baa2ddcb9&request_guid=778abffd-f1af-4b61-9709-a46a1bc872f3 HTTP/1.1" 200 2765 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8329a-0502-ae7a-1a4b-0303c422da0b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8329a-0502-ae7a-1a4b-0303c422da0b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8329a-0502-ae7a-1a4b-0303c422da0b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a411652e-ce5b-4ab6-9686-4fbc273b472b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8329a-0502-ae7a-1a4b-0303c422da0b?request_guid=a411652e-ce5b-4ab6-9686-4fbc273b472b HTTP/1.1" 200 1846 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8329a-0502-ae7a-1a4b-0303c422da0b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 91649ed4-9178-447d-8142-e3aea2c24c8a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8329a-0502-ae7a-1a4b-0303c422da0b?request_guid=91649ed4-9178-447d-8142-e3aea2c24c8a HTTP/1.1" 200 1847 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8329a-0502-ae7a-1a4b-0303c422da0b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: a6572a33-e0f0-41ef-b2c0-25b9880a9689 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8329a-0502-ae7a-1a4b-0303c422da0b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8329a-0502-ae7a-1a4b-0303c422da0b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ccbc5b3d-e2bd-4fb5-807f-00c3e864777a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a6572a33-e0f0-41ef-b2c0-25b9880a9689&request_guid=ccbc5b3d-e2bd-4fb5-807f-00c3e864777a HTTP/1.1" 200 2764 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8329a-0502-ae2c-1a4b-0303c422cddf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8329a-0502-ae2c-1a4b-0303c422cddf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 93fa9515-818f-49ff-8db0-d6dd7e25394d +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fc20c3cc-cbfa-45ae-8781-f1b498767980 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=93fa9515-818f-49ff-8db0-d6dd7e25394d&request_guid=fc20c3cc-cbfa-45ae-8781-f1b498767980 HTTP/1.1" 200 2503 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8329a-0502-ae2c-1a4b-0303c422cde3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8329a-0502-ae2c-1a4b-0303c422cde3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8329a-0502-ae2c-1a4b-0303c422cde3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 00e6428f-7b8c-45d6-8d26-f90ea7f5b3fa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8329a-0502-ae2c-1a4b-0303c422cde3?request_guid=00e6428f-7b8c-45d6-8d26-f90ea7f5b3fa HTTP/1.1" 200 2171 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8329a-0502-ae2c-1a4b-0303c422cde3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a851440d-5624-4a24-b4fa-74d844ccab31 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8329a-0502-ae2c-1a4b-0303c422cde3?request_guid=a851440d-5624-4a24-b4fa-74d844ccab31 HTTP/1.1" 200 2172 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8329a-0502-ae2c-1a4b-0303c422cde3'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 448f8a54-785b-47db-9619-6ae59b2cc262 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8329a-0502-ae2c-1a4b-0303c422cde3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8329a-0502-ae2c-1a4b-0303c422cde3'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9c821c1f-fe3b-43f2-84a4-c5072d0206de +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=448f8a54-785b-47db-9619-6ae59b2cc262&request_guid=9c821c1f-fe3b-43f2-84a4-c5072d0206de HTTP/1.1" 200 2504 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8329a-0502-ae7f-1a4b-0303c422f907 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8329a-0502-ae7f-1a4b-0303c422f907 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 22a7631f-97ac-4fef-a97a-e8f3e4ff4dd9 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6e779241-7515-481c-8e11-7094fd38637c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=22a7631f-97ac-4fef-a97a-e8f3e4ff4dd9&request_guid=6e779241-7515-481c-8e11-7094fd38637c HTTP/1.1" 200 2815 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8329a-0502-ae7a-1a4b-0303c422dab7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8329a-0502-ae7a-1a4b-0303c422dab7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8329a-0502-ae7a-1a4b-0303c422dab7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fbd6838c-f0ac-4724-9b94-b1cd3ac8cbab +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8329a-0502-ae7a-1a4b-0303c422dab7?request_guid=fbd6838c-f0ac-4724-9b94-b1cd3ac8cbab HTTP/1.1" 200 1674 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8329a-0502-ae7a-1a4b-0303c422dab7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 32f64eff-eb13-466f-8e6c-7ddb295fd2bc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8329a-0502-ae7a-1a4b-0303c422dab7?request_guid=32f64eff-eb13-466f-8e6c-7ddb295fd2bc HTTP/1.1" 200 1673 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8329a-0502-ae7a-1a4b-0303c422dab7'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 1afafef5-e507-473c-acd7-a4bd676b3c99 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8329a-0502-ae7a-1a4b-0303c422dab7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8329a-0502-ae7a-1a4b-0303c422dab7'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e62c7868-e4d4-4353-825d-5d6f8b203f17 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1afafef5-e507-473c-acd7-a4bd676b3c99&request_guid=e62c7868-e4d4-4353-825d-5d6f8b203f17 HTTP/1.1" 200 2813 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8329a-0502-ae2c-1a4b-0303c422ce5b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8329a-0502-ae2c-1a4b-0303c422ce5b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3199s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3265s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3308s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=340f04d3-b895-4323-b781-73197b28c966 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d4f76c0b-e54a-4df3-aff2-079b90055f0e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 3209111216544 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 3209111216544 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 3209111631040 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 3209111631040 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 3209111631040 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 3209111631040 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 3209111216544 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 3209111216544 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=340f04d3-b895-4323-b781-73197b28c966&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=d4f76c0b-e54a-4df3-aff2-079b90055f0e HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=1dba4ea7-4e35-44ff-9b34-e3ca587f5170 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9cc6a1a7-38da-453e-937b-1271be0c0cec +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=1dba4ea7-4e35-44ff-9b34-e3ca587f5170&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=9cc6a1a7-38da-453e-937b-1271be0c0cec HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00172s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 573088ba-fde4-49ca-95c7-8178c1c0a790 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 57ac831c-feb5-4064-94f9-b6a761cfad36 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=573088ba-fde4-49ca-95c7-8178c1c0a790&request_guid=57ac831c-feb5-4064-94f9-b6a761cfad36 HTTP/1.1" 200 2766 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8329a-0502-ae7a-1a4b-0303c42333a7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8329a-0502-ae7a-1a4b-0303c42333a7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8329a-0502-ae7a-1a4b-0303c42333a7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f4ef8534-b1fe-4e8a-8196-bbc8e617bd93 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8329a-0502-ae7a-1a4b-0303c42333a7?request_guid=f4ef8534-b1fe-4e8a-8196-bbc8e617bd93 HTTP/1.1" 200 1844 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8329a-0502-ae7a-1a4b-0303c42333a7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2aa881ba-cbbf-4818-873b-2b272f8691cf +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8329a-0502-ae7a-1a4b-0303c42333a7?request_guid=2aa881ba-cbbf-4818-873b-2b272f8691cf HTTP/1.1" 200 1844 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8329a-0502-ae7a-1a4b-0303c42333a7'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 23eac6d7-2566-4c28-8a9a-e949ca4f8528 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8329a-0502-ae7a-1a4b-0303c42333a7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8329a-0502-ae7a-1a4b-0303c42333a7'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a87826a8-1bd2-4fc8-9f7d-7cd073b80e9e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=23eac6d7-2566-4c28-8a9a-e949ca4f8528&request_guid=a87826a8-1bd2-4fc8-9f7d-7cd073b80e9e HTTP/1.1" 200 2766 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8329a-0502-ae7a-1a4b-0303c42333cf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8329a-0502-ae7a-1a4b-0303c42333cf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 2227640c-8f5d-4ff0-9366-1d3f19137331 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8fc42d9d-8810-4f46-bd45-f930dc1c28ec +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2227640c-8f5d-4ff0-9366-1d3f19137331&request_guid=8fc42d9d-8810-4f46-bd45-f930dc1c28ec HTTP/1.1" 200 2505 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8329b-0502-ae7f-1a4b-0303c423434f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8329b-0502-ae7f-1a4b-0303c423434f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8329b-0502-ae7f-1a4b-0303c423434f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 35c838bc-08f4-446a-86bd-8796d5068fb7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8329b-0502-ae7f-1a4b-0303c423434f?request_guid=35c838bc-08f4-446a-86bd-8796d5068fb7 HTTP/1.1" 200 2168 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8329b-0502-ae7f-1a4b-0303c423434f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 286ffb30-3e56-48aa-a0a7-a80fe996d689 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8329b-0502-ae7f-1a4b-0303c423434f?request_guid=286ffb30-3e56-48aa-a0a7-a80fe996d689 HTTP/1.1" 200 2167 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8329b-0502-ae7f-1a4b-0303c423434f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: a4c60394-aa1a-407d-95b6-7d609c7d021d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8329b-0502-ae7f-1a4b-0303c423434f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8329b-0502-ae7f-1a4b-0303c423434f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e5e0ba89-d94f-4db3-9137-15600302d914 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a4c60394-aa1a-407d-95b6-7d609c7d021d&request_guid=e5e0ba89-d94f-4db3-9137-15600302d914 HTTP/1.1" 200 2511 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8329b-0502-ae87-1a4b-0303c42325c3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8329b-0502-ae87-1a4b-0303c42325c3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 933aa187-27b1-4e1a-a160-9598e7a433c0 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0be2c481-5b1f-49f5-a697-57997cd3b268 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=933aa187-27b1-4e1a-a160-9598e7a433c0&request_guid=0be2c481-5b1f-49f5-a697-57997cd3b268 HTTP/1.1" 200 2814 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8329b-0502-ae7f-1a4b-0303c423437f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8329b-0502-ae7f-1a4b-0303c423437f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8329b-0502-ae7f-1a4b-0303c423437f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e350c2e7-698f-424d-a29c-d980f0314917 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8329b-0502-ae7f-1a4b-0303c423437f?request_guid=e350c2e7-698f-424d-a29c-d980f0314917 HTTP/1.1" 200 1676 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8329b-0502-ae7f-1a4b-0303c423437f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0b6014dc-34d0-4dec-b425-fe0dfc1fcc8c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8329b-0502-ae7f-1a4b-0303c423437f?request_guid=0b6014dc-34d0-4dec-b425-fe0dfc1fcc8c HTTP/1.1" 200 1676 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8329b-0502-ae7f-1a4b-0303c423437f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 1a2bccb9-8d30-433a-85c1-46d45ecda642 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8329b-0502-ae7f-1a4b-0303c423437f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8329b-0502-ae7f-1a4b-0303c423437f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0ae17e3d-486b-46d2-9415-4561d0d6e3dd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1a2bccb9-8d30-433a-85c1-46d45ecda642&request_guid=0ae17e3d-486b-46d2-9415-4561d0d6e3dd HTTP/1.1" 200 2811 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8329b-0502-ae2c-1a4b-0303c4231867 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8329b-0502-ae2c-1a4b-0303c4231867 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:22] "GET /daterange HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:22] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:23] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:23] "GET /static/css/style.css HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:23] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:23] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:23] "GET /js/main.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:23] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:23] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:23] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:23] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:23] "GET /static/img/favicon.ico HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT targets.id AS targets_id, targets.targetname AS targets_targetname, targets.username AS targets_username, targets.password AS targets_password, targets.account AS targets_account, targets.warehouse AS targets_warehouse, targets."database" AS targets_database, targets.schemaname AS targets_schemaname +FROM targets +INFO:sqlalchemy.engine.Engine:[cached since 43.19s ago] () +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:33] "POST /schemas HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:33] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:33] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:33] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:33] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:33] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:33] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:33] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:34] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:34] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:34] "GET /js/main.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT targets.id AS targets_id, targets.targetname AS targets_targetname, targets.username AS targets_username, targets.password AS targets_password, targets.account AS targets_account, targets.warehouse AS targets_warehouse, targets."database" AS targets_database, targets.schemaname AS targets_schemaname +FROM targets +WHERE targets."database" = ? AND targets.schemaname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00324s] ('PL_PROD', 'PM_TRANS_CL_EPALARM_QLIK_CT_D', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT targets.id AS targets_id, targets.targetname AS targets_targetname, targets.username AS targets_username, targets.password AS targets_password, targets.account AS targets_account, targets.warehouse AS targets_warehouse, targets."database" AS targets_database, targets.schemaname AS targets_schemaname +FROM targets +WHERE targets."database" = ? AND targets.schemaname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.02768s ago] ('PL_QA', 'PM_TRANS_CL_EPALARM_QLIK_CT_D', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00206s] ('get_tablelist', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=2a566ca1-f461-41fd-ac99-c445e593892d +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3afbd13c-28f7-42c1-94c7-70c042191332 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1742123393584 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1742123393584 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1742123744704 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1742123744704 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1742123744704 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1742123744704 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1742123393584 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1742123393584 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Failed to validate ocsp response 254013: 254013: Response is unreliable. Its validity date is out of range: current_time=2022-11-10 11:07:52Z, this_update=2022-11-08 21:09:20Z, next_update=2022-11-10 09:09:20Z, tolerable next_update=2022-11-10 09:30:56Z. A potential cause is client clock is skewed, CA fails to update OCSP response in time. +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=197 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:not hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:started downloading OCSP response cache file: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:urllib3.connectionpool:Starting new HTTP connection (1): ocsp.snowflakecomputing.com:80 +DEBUG:urllib3.connectionpool:http://ocsp.snowflakecomputing.com:80 "GET /ocsp_response_cache.json HTTP/1.1" 200 197256 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ended downloading OCSP response cache file. elapsed time: 0.7930524349212646s +DEBUG:snowflake.connector.ocsp_snowflake:downloaded OCSP response cache file from http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:# of certificates: 198 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=2a566ca1-f461-41fd-ac99-c445e593892d&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=3afbd13c-28f7-42c1-94c7-70c042191332 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select distinct(table_name) from information_schema.columns where table_schema =...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 174f97d4-5166-491c-9131-ed210fdf3a21 +DEBUG:snowflake.connector.cursor:running query [select distinct(table_name) from information_schema.columns where table_schema =...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select distinct(table_name) from information_schema.columns where table_schema =...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bea1c60f-af2f-4335-baa6-8d750f8010b1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=174f97d4-5166-491c-9131-ed210fdf3a21&request_guid=bea1c60f-af2f-4335-baa6-8d750f8010b1 HTTP/1.1" 200 1933 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836db-0502-afee-1a4b-0303c53e4183 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836db-0502-afee-1a4b-0303c53e4183 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 15 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836db-0502-afee-1a4b-0303c53e4183' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 57379ad8-250e-4c8a-8e69-50240490e155 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836db-0502-afee-1a4b-0303c53e4183?request_guid=57379ad8-250e-4c8a-8e69-50240490e155 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836db-0502-afee-1a4b-0303c53e4183' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 72fe7132-3a50-4869-ac77-78222ba1fce2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836db-0502-afee-1a4b-0303c53e4183?request_guid=72fe7132-3a50-4869-ac77-78222ba1fce2 HTTP/1.1" 200 1858 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836db-0502-afee-1a4b-0303c53e4183'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: f72f7c34-8fa8-400d-9c79-f3211a58016e +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836db-0502-afee-1a4b-0303c53e4183'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836db-0502-afee-1a4b-0303c53e4183'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c072dbd8-7079-4b4c-a992-d2ad3d888c8e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f72f7c34-8fa8-400d-9c79-f3211a58016e&request_guid=c072dbd8-7079-4b4c-a992-d2ad3d888c8e HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836db-0502-afee-1a4b-0303c53e41db +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836db-0502-afee-1a4b-0303c53e41db +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 15 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2 +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:55] "POST /tables HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:55] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:55] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:55] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:55] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:55] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:55] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:55] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:55] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:55] "GET /js/main.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:07:55] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:08:05] "POST /submit HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:08:05] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:08:05] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:08:05] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:08:05] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:08:05] "GET /js/main.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:08:05] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:08:05] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:08:05] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:08:05] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:08:05] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 77.88s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 77.88s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 77.88s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=293a2941-0fd1-456e-a639-a1a82ce3f16d +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7d72f6f6-3723-4bbd-a67d-2f7e15221577 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=293a2941-0fd1-456e-a639-a1a82ce3f16d&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=7d72f6f6-3723-4bbd-a67d-2f7e15221577 HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=29e635ec-d5cf-4c24-a105-c2a3a222e30f +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d737727d-b75f-4bd3-bd02-a347e517c815 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=29e635ec-d5cf-4c24-a105-c2a3a222e30f&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=d737727d-b75f-4bd3-bd02-a347e517c815 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 20.21s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 1dbdd86d-c321-4213-a1ff-65d18109bf84 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 30fb53ad-de9f-458b-8522-df4fbb032571 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1dbdd86d-c321-4213-a1ff-65d18109bf84&request_guid=30fb53ad-de9f-458b-8522-df4fbb032571 HTTP/1.1" 200 2764 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836dc-0502-b0de-1a4b-0303c53e52e3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836dc-0502-b0de-1a4b-0303c53e52e3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836dc-0502-b0de-1a4b-0303c53e52e3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7185ff4e-e3b8-4019-a008-de859476dd7e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836dc-0502-b0de-1a4b-0303c53e52e3?request_guid=7185ff4e-e3b8-4019-a008-de859476dd7e HTTP/1.1" 200 1862 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836dc-0502-b0de-1a4b-0303c53e52e3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 711bd9ac-c6fc-4549-a87f-a9da15c72de8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836dc-0502-b0de-1a4b-0303c53e52e3?request_guid=711bd9ac-c6fc-4549-a87f-a9da15c72de8 HTTP/1.1" 200 1862 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836dc-0502-b0de-1a4b-0303c53e52e3'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 52da5c79-bf87-4b4e-8949-2168016518b8 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836dc-0502-b0de-1a4b-0303c53e52e3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836dc-0502-b0de-1a4b-0303c53e52e3'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 48f0f9ee-6af4-498a-92bb-36e9bad34fd7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=52da5c79-bf87-4b4e-8949-2168016518b8&request_guid=48f0f9ee-6af4-498a-92bb-36e9bad34fd7 HTTP/1.1" 200 2765 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836dc-0502-b1d6-1a4b-0303c53e2d7b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836dc-0502-b1d6-1a4b-0303c53e2d7b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: ce65b805-b585-46ae-84a8-a0c24822a918 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2af5e5c4-a602-4542-ad8e-ac20ab946555 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ce65b805-b585-46ae-84a8-a0c24822a918&request_guid=2af5e5c4-a602-4542-ad8e-ac20ab946555 HTTP/1.1" 200 2506 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836dc-0502-af26-1a4b-0303c53e3da3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836dc-0502-af26-1a4b-0303c53e3da3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836dc-0502-af26-1a4b-0303c53e3da3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 38010afa-9c82-4e59-bc63-936af30d3712 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836dc-0502-af26-1a4b-0303c53e3da3?request_guid=38010afa-9c82-4e59-bc63-936af30d3712 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836dc-0502-af26-1a4b-0303c53e3da3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 470020e7-7294-4872-a889-cd4050ef225b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836dc-0502-af26-1a4b-0303c53e3da3?request_guid=470020e7-7294-4872-a889-cd4050ef225b HTTP/1.1" 200 2163 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836dc-0502-af26-1a4b-0303c53e3da3'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 5de5fb7c-8653-407e-83e2-389f5655724e +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836dc-0502-af26-1a4b-0303c53e3da3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836dc-0502-af26-1a4b-0303c53e3da3'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a51f9333-64a7-4cd4-8cc9-b3e491ab4a2f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5de5fb7c-8653-407e-83e2-389f5655724e&request_guid=a51f9333-64a7-4cd4-8cc9-b3e491ab4a2f HTTP/1.1" 200 2505 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836dc-0502-b1d6-1a4b-0303c53e2db3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836dc-0502-b1d6-1a4b-0303c53e2db3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 4bd495c2-46b5-4837-b28c-18843dc8ff85 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2b30eeb9-a2c5-4cda-9dc9-93c7c9642233 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4bd495c2-46b5-4837-b28c-18843dc8ff85&request_guid=2b30eeb9-a2c5-4cda-9dc9-93c7c9642233 HTTP/1.1" 200 2817 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836dc-0502-ae87-1a4b-0303c53e1cff +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836dc-0502-ae87-1a4b-0303c53e1cff +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836dc-0502-ae87-1a4b-0303c53e1cff' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 146dd8c3-390d-4fd1-b2bc-6bc02484888b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836dc-0502-ae87-1a4b-0303c53e1cff?request_guid=146dd8c3-390d-4fd1-b2bc-6bc02484888b HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836dc-0502-ae87-1a4b-0303c53e1cff' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2d8be8ac-852e-4e49-adc6-776032b67b0b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836dc-0502-ae87-1a4b-0303c53e1cff?request_guid=2d8be8ac-852e-4e49-adc6-776032b67b0b HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836dc-0502-ae87-1a4b-0303c53e1cff'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 2ea92dd1-9931-4e7e-9944-8602bced56dd +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836dc-0502-ae87-1a4b-0303c53e1cff'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836dc-0502-ae87-1a4b-0303c53e1cff'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8c90862d-290a-405a-b1a6-328bfd871ab1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2ea92dd1-9931-4e7e-9944-8602bced56dd&request_guid=8c90862d-290a-405a-b1a6-328bfd871ab1 HTTP/1.1" 200 2812 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836dc-0502-b0de-1a4b-0303c53e5367 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836dc-0502-b0de-1a4b-0303c53e5367 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:08:15] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:08:15] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:08:15] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:08:15] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:08:15] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:09:54] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:09:54] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:09:54] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:09:54] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:09:55] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:09:55] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 25.54s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 25.6s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 25.73s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=6adbc6db-eed9-4a30-afe9-0b82bdd94c11 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8c4b69df-660c-43e9-839a-3448462d7d1c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2638576007776 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2638576007776 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2638576440880 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2638576440880 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2638576440880 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2638576440880 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2638576007776 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2638576007776 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=6adbc6db-eed9-4a30-afe9-0b82bdd94c11&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=8c4b69df-660c-43e9-839a-3448462d7d1c HTTP/1.1" 200 1556 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=03050f5c-7e2f-47c9-a7ec-8354868d0f27 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b51368f5-af0e-49a7-9365-70630e9d369b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=03050f5c-7e2f-47c9-a7ec-8354868d0f27&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=b51368f5-af0e-49a7-9365-70630e9d369b HTTP/1.1" 200 1560 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00197s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 75e7e0bb-7c9f-4e43-8694-0a7661a84f65 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 33686a48-e4f5-4ca6-b198-feb3953696cc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=75e7e0bb-7c9f-4e43-8694-0a7661a84f65&request_guid=33686a48-e4f5-4ca6-b198-feb3953696cc HTTP/1.1" 200 2767 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836de-0502-afee-1a4b-0303c53e9f0f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836de-0502-afee-1a4b-0303c53e9f0f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836de-0502-afee-1a4b-0303c53e9f0f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c9608fce-1e5d-4ef3-bfcd-ac7fa571c924 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836de-0502-afee-1a4b-0303c53e9f0f?request_guid=c9608fce-1e5d-4ef3-bfcd-ac7fa571c924 HTTP/1.1" 200 1856 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836de-0502-afee-1a4b-0303c53e9f0f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 55399b1e-d616-4433-8f18-dc28c144a23a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836de-0502-afee-1a4b-0303c53e9f0f?request_guid=55399b1e-d616-4433-8f18-dc28c144a23a HTTP/1.1" 200 1856 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836de-0502-afee-1a4b-0303c53e9f0f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: b24394c0-3305-452f-9d02-e612ff052387 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836de-0502-afee-1a4b-0303c53e9f0f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836de-0502-afee-1a4b-0303c53e9f0f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 47b4631d-0ba4-4eae-814e-87fe587ce6e0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b24394c0-3305-452f-9d02-e612ff052387&request_guid=47b4631d-0ba4-4eae-814e-87fe587ce6e0 HTTP/1.1" 200 2764 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836de-0502-b1d6-1a4b-0303c53ec5b3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836de-0502-b1d6-1a4b-0303c53ec5b3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 305a3957-f56c-40d9-b842-2d83d97862c1 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6f96e77b-3f2a-42d0-8f5d-9270ea84a581 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=305a3957-f56c-40d9-b842-2d83d97862c1&request_guid=6f96e77b-3f2a-42d0-8f5d-9270ea84a581 HTTP/1.1" 200 2510 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836de-0502-ae87-1a4b-0303c53ed4a7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836de-0502-ae87-1a4b-0303c53ed4a7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836de-0502-ae87-1a4b-0303c53ed4a7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b0a8b95e-bb1c-46c3-8bd0-0b0d4d2771a8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836de-0502-ae87-1a4b-0303c53ed4a7?request_guid=b0a8b95e-bb1c-46c3-8bd0-0b0d4d2771a8 HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836de-0502-ae87-1a4b-0303c53ed4a7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4cd70060-9e41-4ff7-91d6-f132759a851f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836de-0502-ae87-1a4b-0303c53ed4a7?request_guid=4cd70060-9e41-4ff7-91d6-f132759a851f HTTP/1.1" 200 2170 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836de-0502-ae87-1a4b-0303c53ed4a7'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 0d3f7d61-1a66-495b-ba5a-9c810c27dd90 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836de-0502-ae87-1a4b-0303c53ed4a7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836de-0502-ae87-1a4b-0303c53ed4a7'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8d468ebb-4cc3-4688-a011-b1d23186287f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0d3f7d61-1a66-495b-ba5a-9c810c27dd90&request_guid=8d468ebb-4cc3-4688-a011-b1d23186287f HTTP/1.1" 200 2502 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836de-0502-b0de-1a4b-0303c53eac03 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836de-0502-b0de-1a4b-0303c53eac03 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 5b6fb6e5-fe19-401c-9ad4-a795b932fcb5 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ec416fb1-8f5c-40ee-b57e-051d510aef8c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5b6fb6e5-fe19-401c-9ad4-a795b932fcb5&request_guid=ec416fb1-8f5c-40ee-b57e-051d510aef8c HTTP/1.1" 200 2810 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836de-0502-b0de-1a4b-0303c53eac0b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836de-0502-b0de-1a4b-0303c53eac0b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836de-0502-b0de-1a4b-0303c53eac0b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1262d78f-6b51-4215-9579-494dde93569f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836de-0502-b0de-1a4b-0303c53eac0b?request_guid=1262d78f-6b51-4215-9579-494dde93569f HTTP/1.1" 200 1674 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836de-0502-b0de-1a4b-0303c53eac0b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3df3403a-0fd0-4cec-9a96-5e0d5b145614 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836de-0502-b0de-1a4b-0303c53eac0b?request_guid=3df3403a-0fd0-4cec-9a96-5e0d5b145614 HTTP/1.1" 200 1674 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836de-0502-b0de-1a4b-0303c53eac0b'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 19b0b3b5-82e2-41d9-a93a-2a35e6b73434 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836de-0502-b0de-1a4b-0303c53eac0b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836de-0502-b0de-1a4b-0303c53eac0b'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 05daa548-339c-43ec-ba58-3fe3b8122c44 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=19b0b3b5-82e2-41d9-a93a-2a35e6b73434&request_guid=05daa548-339c-43ec-ba58-3fe3b8122c44 HTTP/1.1" 200 2811 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836de-0502-b1d6-1a4b-0303c53ec647 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836de-0502-b1d6-1a4b-0303c53ec647 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:10:06] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:10:06] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:10:06] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:10:07] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:12:31] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:12:31] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:12:31] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:12:31] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:12:31] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 22.52s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 22.56s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 22.59s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=84c10f29-e6c1-4ff8-9678-ab01c6a2a37b +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d7fe46dc-f76a-455c-9dc4-a511ddf73239 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1531947545408 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1531947545408 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1531947994896 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1531947994896 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1531947994896 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1531947994896 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1531947545408 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1531947545408 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=84c10f29-e6c1-4ff8-9678-ab01c6a2a37b&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=d7fe46dc-f76a-455c-9dc4-a511ddf73239 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=7803a9ad-37d1-4694-9e25-477ba7279b7a +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cda6fea3-8fb9-43e2-9daa-2fb5d2d62f8f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=7803a9ad-37d1-4694-9e25-477ba7279b7a&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=cda6fea3-8fb9-43e2-9daa-2fb5d2d62f8f HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00205s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 5636e411-e416-4719-81d1-5527bf27231c +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ec207854-442a-4719-ae7e-0813e6c0cec7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5636e411-e416-4719-81d1-5527bf27231c&request_guid=ec207854-442a-4719-ae7e-0813e6c0cec7 HTTP/1.1" 200 2762 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e0-0502-b1d6-1a4b-0303c53f7a07 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e0-0502-b1d6-1a4b-0303c53f7a07 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e0-0502-b1d6-1a4b-0303c53f7a07' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 81703d27-5bfe-45ee-8915-065dbf52f5fa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e0-0502-b1d6-1a4b-0303c53f7a07?request_guid=81703d27-5bfe-45ee-8915-065dbf52f5fa HTTP/1.1" 200 1855 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e0-0502-b1d6-1a4b-0303c53f7a07' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8f905f0d-8b20-4948-a3e3-433a32015ca0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e0-0502-b1d6-1a4b-0303c53f7a07?request_guid=8f905f0d-8b20-4948-a3e3-433a32015ca0 HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836e0-0502-b1d6-1a4b-0303c53f7a07'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 76da3cfc-08ef-4680-8c9e-ba1cbbc195a4 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836e0-0502-b1d6-1a4b-0303c53f7a07'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836e0-0502-b1d6-1a4b-0303c53f7a07'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ed74b354-be47-46dc-a59c-79bda8273a4f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=76da3cfc-08ef-4680-8c9e-ba1cbbc195a4&request_guid=ed74b354-be47-46dc-a59c-79bda8273a4f HTTP/1.1" 200 2763 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e0-0502-af26-1a4b-0303c53f5e97 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e0-0502-af26-1a4b-0303c53f5e97 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: f42f9835-d8e3-44b3-983e-d496927d899a +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 244e3f0a-4abc-40d9-aee0-ecc657e7e59b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f42f9835-d8e3-44b3-983e-d496927d899a&request_guid=244e3f0a-4abc-40d9-aee0-ecc657e7e59b HTTP/1.1" 200 2511 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e0-0502-ae87-1a4b-0303c53f6b93 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e0-0502-ae87-1a4b-0303c53f6b93 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e0-0502-ae87-1a4b-0303c53f6b93' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d5f0b45a-9a3e-4d25-9d49-0afec1d28519 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e0-0502-ae87-1a4b-0303c53f6b93?request_guid=d5f0b45a-9a3e-4d25-9d49-0afec1d28519 HTTP/1.1" 200 2165 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e0-0502-ae87-1a4b-0303c53f6b93' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 338a984d-d239-4c34-ba59-91a6cb03a3a6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e0-0502-ae87-1a4b-0303c53f6b93?request_guid=338a984d-d239-4c34-ba59-91a6cb03a3a6 HTTP/1.1" 200 2165 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836e0-0502-ae87-1a4b-0303c53f6b93'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 0352c58a-7d40-4419-85ef-466d115d27e4 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836e0-0502-ae87-1a4b-0303c53f6b93'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836e0-0502-ae87-1a4b-0303c53f6b93'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 49e034d7-f849-475a-8a66-24bdd3eb8b8c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0352c58a-7d40-4419-85ef-466d115d27e4&request_guid=49e034d7-f849-475a-8a66-24bdd3eb8b8c HTTP/1.1" 200 2510 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e0-0502-afee-1a4b-0303c53f86d7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e0-0502-afee-1a4b-0303c53f86d7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: bd4dc484-099d-4727-b69c-76fd745421c4 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 021f4098-616d-4800-b741-14d52523223a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=bd4dc484-099d-4727-b69c-76fd745421c4&request_guid=021f4098-616d-4800-b741-14d52523223a HTTP/1.1" 200 2812 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e0-0502-b0de-1a4b-0303c53f91ff +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e0-0502-b0de-1a4b-0303c53f91ff +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e0-0502-b0de-1a4b-0303c53f91ff' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fa29b421-e2c7-49fb-ac70-da654f446824 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e0-0502-b0de-1a4b-0303c53f91ff?request_guid=fa29b421-e2c7-49fb-ac70-da654f446824 HTTP/1.1" 200 1676 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e0-0502-b0de-1a4b-0303c53f91ff' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: da4287e8-4bd6-4ce7-9dfe-d39e8d6eca4d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e0-0502-b0de-1a4b-0303c53f91ff?request_guid=da4287e8-4bd6-4ce7-9dfe-d39e8d6eca4d HTTP/1.1" 200 1676 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836e0-0502-b0de-1a4b-0303c53f91ff'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: ff5f9dac-620c-4cc7-9d49-573ca0722bc7 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836e0-0502-b0de-1a4b-0303c53f91ff'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836e0-0502-b0de-1a4b-0303c53f91ff'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5ce3a9cc-9bfd-4e92-9de3-4c428523fec9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ff5f9dac-620c-4cc7-9d49-573ca0722bc7&request_guid=5ce3a9cc-9bfd-4e92-9de3-4c428523fec9 HTTP/1.1" 200 2812 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e0-0502-b1d6-1a4b-0303c53f7b3f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e0-0502-b1d6-1a4b-0303c53f7b3f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:12:42] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:12:42] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:12:42] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:12:43] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:14:01] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:14:01] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:14:01] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:14:01] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 16.07s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 16.07s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 16.08s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=47005bc3-f912-4eb3-b5aa-cad5fbd6db02 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7b6793dc-1bf9-4193-8cd7-574bafb52fe9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2202334490784 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2202334490784 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2202334907504 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2202334907504 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2202334907504 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2202334907504 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2202334490784 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2202334490784 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=47005bc3-f912-4eb3-b5aa-cad5fbd6db02&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=7b6793dc-1bf9-4193-8cd7-574bafb52fe9 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=eb67ee24-3c26-4878-b68d-183200bce7c4 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 963e3433-49a3-4313-8db1-e4442df1b5e1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=eb67ee24-3c26-4878-b68d-183200bce7c4&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=963e3433-49a3-4313-8db1-e4442df1b5e1 HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00187s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 18f57ca7-0247-47ea-ba6f-e7e48193344e +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0bec9dfb-894a-438b-ba80-aed6b348438c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=18f57ca7-0247-47ea-ba6f-e7e48193344e&request_guid=0bec9dfb-894a-438b-ba80-aed6b348438c HTTP/1.1" 200 2765 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e2-0502-b0de-1a4b-0303c53febe3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e2-0502-b0de-1a4b-0303c53febe3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e2-0502-b0de-1a4b-0303c53febe3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c889125e-0c6e-4d3e-bd18-99fdaf0b7e93 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e2-0502-b0de-1a4b-0303c53febe3?request_guid=c889125e-0c6e-4d3e-bd18-99fdaf0b7e93 HTTP/1.1" 200 1846 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e2-0502-b0de-1a4b-0303c53febe3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5f70795f-90ad-4825-b4d7-fa77f74a8f23 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e2-0502-b0de-1a4b-0303c53febe3?request_guid=5f70795f-90ad-4825-b4d7-fa77f74a8f23 HTTP/1.1" 200 1846 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836e2-0502-b0de-1a4b-0303c53febe3'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: a0e2c0db-9cd2-4c79-ac14-a0b36c2196cd +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836e2-0502-b0de-1a4b-0303c53febe3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836e2-0502-b0de-1a4b-0303c53febe3'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 98e571e8-16a8-4991-9ccf-090729a9a66b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a0e2c0db-9cd2-4c79-ac14-a0b36c2196cd&request_guid=98e571e8-16a8-4991-9ccf-090729a9a66b HTTP/1.1" 200 2766 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e2-0502-af26-1a4b-0303c53ff86b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e2-0502-af26-1a4b-0303c53ff86b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 706411de-d9ad-4a95-8350-578d5e6dd309 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7c1c1130-a436-4202-946a-50bcc192b4c7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=706411de-d9ad-4a95-8350-578d5e6dd309&request_guid=7c1c1130-a436-4202-946a-50bcc192b4c7 HTTP/1.1" 200 2508 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e2-0502-af26-1a4b-0303c53ff873 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e2-0502-af26-1a4b-0303c53ff873 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e2-0502-af26-1a4b-0303c53ff873' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 60d80331-1d35-475f-b545-2b0162067e48 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e2-0502-af26-1a4b-0303c53ff873?request_guid=60d80331-1d35-475f-b545-2b0162067e48 HTTP/1.1" 200 2170 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e2-0502-af26-1a4b-0303c53ff873' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 494a6f1b-c390-4907-b4f6-39cbf1e3f30b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e2-0502-af26-1a4b-0303c53ff873?request_guid=494a6f1b-c390-4907-b4f6-39cbf1e3f30b HTTP/1.1" 200 2170 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836e2-0502-af26-1a4b-0303c53ff873'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 8802a81b-3d78-4c42-933a-28dcfdde23eb +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836e2-0502-af26-1a4b-0303c53ff873'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836e2-0502-af26-1a4b-0303c53ff873'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8645e2a4-28b5-45af-b09b-4513ef43e540 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=8802a81b-3d78-4c42-933a-28dcfdde23eb&request_guid=8645e2a4-28b5-45af-b09b-4513ef43e540 HTTP/1.1" 200 2505 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e2-0502-b1d6-1a4b-0303c54011d7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e2-0502-b1d6-1a4b-0303c54011d7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: f4d969eb-9fa4-470c-92a0-52a39c3aa2f6 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 78e6ff4e-8838-4858-b98f-cd5d9b264b07 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f4d969eb-9fa4-470c-92a0-52a39c3aa2f6&request_guid=78e6ff4e-8838-4858-b98f-cd5d9b264b07 HTTP/1.1" 200 2818 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e2-0502-afee-1a4b-0303c53fddbb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e2-0502-afee-1a4b-0303c53fddbb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e2-0502-afee-1a4b-0303c53fddbb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 20da1dff-b34c-40c2-a0c1-5c5ce43b8202 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e2-0502-afee-1a4b-0303c53fddbb?request_guid=20da1dff-b34c-40c2-a0c1-5c5ce43b8202 HTTP/1.1" 200 1675 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e2-0502-afee-1a4b-0303c53fddbb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 895d5a13-8012-4907-9b51-1c90ef3af4eb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e2-0502-afee-1a4b-0303c53fddbb?request_guid=895d5a13-8012-4907-9b51-1c90ef3af4eb HTTP/1.1" 200 1674 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836e2-0502-afee-1a4b-0303c53fddbb'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: fafe495a-6c26-4841-88a6-e7dbef18c742 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836e2-0502-afee-1a4b-0303c53fddbb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836e2-0502-afee-1a4b-0303c53fddbb'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 64ed1b47-451b-4ddb-95cf-aee290d38fbd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=fafe495a-6c26-4841-88a6-e7dbef18c742&request_guid=64ed1b47-451b-4ddb-95cf-aee290d38fbd HTTP/1.1" 200 2813 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e2-0502-b1d6-1a4b-0303c54011fb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e2-0502-b1d6-1a4b-0303c54011fb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:14:11] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:14:11] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:14:11] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:14:12] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:15:47] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:15:47] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:15:47] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:15:47] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 48s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 48.01s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 48.01s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=e232b7bc-f95b-4a4d-afcd-2a5d5d932cd2 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a22452d9-7cd2-4a40-8f87-44a27f060f93 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1614956556448 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1614956556448 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1614956924016 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1614956924016 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1614956924016 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1614956924016 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1614956556448 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1614956556448 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=e232b7bc-f95b-4a4d-afcd-2a5d5d932cd2&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=a22452d9-7cd2-4a40-8f87-44a27f060f93 HTTP/1.1" 200 1556 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=a6520a66-914c-4225-a910-74ca7e9d1986 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cee813ae-71f3-478f-8eb4-9effa1edbde9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=a6520a66-914c-4225-a910-74ca7e9d1986&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=cee813ae-71f3-478f-8eb4-9effa1edbde9 HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00204s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 4217d8d1-15d3-4b2a-a64d-66703bc4f98b +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9338eaf2-d9a8-4ef6-aa1b-f08a9269173b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4217d8d1-15d3-4b2a-a64d-66703bc4f98b&request_guid=9338eaf2-d9a8-4ef6-aa1b-f08a9269173b HTTP/1.1" 200 2764 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e3-0502-af26-1a4b-0303c540937b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e3-0502-af26-1a4b-0303c540937b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e3-0502-af26-1a4b-0303c540937b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 84016919-e018-41a7-9c7a-85a1268892ad +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e3-0502-af26-1a4b-0303c540937b?request_guid=84016919-e018-41a7-9c7a-85a1268892ad HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e3-0502-af26-1a4b-0303c540937b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2956a856-3477-40a0-bc6c-666d7a3e9a36 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e3-0502-af26-1a4b-0303c540937b?request_guid=2956a856-3477-40a0-bc6c-666d7a3e9a36 HTTP/1.1" 200 1855 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836e3-0502-af26-1a4b-0303c540937b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 019edbee-c870-465c-bd4f-72d7a3180380 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836e3-0502-af26-1a4b-0303c540937b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836e3-0502-af26-1a4b-0303c540937b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 92f22e36-b0cb-4c89-b073-87f1b6be7047 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=019edbee-c870-465c-bd4f-72d7a3180380&request_guid=92f22e36-b0cb-4c89-b073-87f1b6be7047 HTTP/1.1" 200 2762 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e3-0502-b0de-1a4b-0303c540892b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e3-0502-b0de-1a4b-0303c540892b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: c6e0f3f8-ed7d-4817-89ec-2067c0ded88e +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: dd5d7d1f-763d-43e9-b814-884807e2d518 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c6e0f3f8-ed7d-4817-89ec-2067c0ded88e&request_guid=dd5d7d1f-763d-43e9-b814-884807e2d518 HTTP/1.1" 200 2512 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e3-0502-afee-1a4b-0303c5407c2f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e3-0502-afee-1a4b-0303c5407c2f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e3-0502-afee-1a4b-0303c5407c2f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5a7064fe-0c16-43e0-a80c-385845a1979d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e3-0502-afee-1a4b-0303c5407c2f?request_guid=5a7064fe-0c16-43e0-a80c-385845a1979d HTTP/1.1" 200 2174 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e3-0502-afee-1a4b-0303c5407c2f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7dab3095-b6b9-469a-b90c-d0a9ff54952b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e3-0502-afee-1a4b-0303c5407c2f?request_guid=7dab3095-b6b9-469a-b90c-d0a9ff54952b HTTP/1.1" 200 2173 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836e3-0502-afee-1a4b-0303c5407c2f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: f7c16477-9ff3-4eef-be82-cb99d208a6bd +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836e3-0502-afee-1a4b-0303c5407c2f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836e3-0502-afee-1a4b-0303c5407c2f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e1ea7612-63a8-4ab3-88a2-5e24f69b6bcc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f7c16477-9ff3-4eef-be82-cb99d208a6bd&request_guid=e1ea7612-63a8-4ab3-88a2-5e24f69b6bcc HTTP/1.1" 200 2508 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e3-0502-b1d6-1a4b-0303c5406dbb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e3-0502-b1d6-1a4b-0303c5406dbb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: b9f14ed3-4cc7-488d-b603-bf479971ee06 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f9f61550-bd41-48a2-a3cc-e27f33c1a14b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b9f14ed3-4cc7-488d-b603-bf479971ee06&request_guid=f9f61550-bd41-48a2-a3cc-e27f33c1a14b HTTP/1.1" 200 2812 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e3-0502-b0de-1a4b-0303c5408983 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e3-0502-b0de-1a4b-0303c5408983 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e3-0502-b0de-1a4b-0303c5408983' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 60b71840-31b6-44cc-ae4b-2b922e43abf4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e3-0502-b0de-1a4b-0303c5408983?request_guid=60b71840-31b6-44cc-ae4b-2b922e43abf4 HTTP/1.1" 200 1680 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e3-0502-b0de-1a4b-0303c5408983' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 33061d7a-17bb-4e48-aac8-52888f2d0b33 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e3-0502-b0de-1a4b-0303c5408983?request_guid=33061d7a-17bb-4e48-aac8-52888f2d0b33 HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836e3-0502-b0de-1a4b-0303c5408983'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 9f4127d2-b57b-41a2-9391-f81e8e32fabf +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836e3-0502-b0de-1a4b-0303c5408983'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836e3-0502-b0de-1a4b-0303c5408983'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 315cd256-2ef3-418d-b989-e7eb2c0f2efd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=9f4127d2-b57b-41a2-9391-f81e8e32fabf&request_guid=315cd256-2ef3-418d-b989-e7eb2c0f2efd HTTP/1.1" 200 2813 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e3-0502-af26-1a4b-0303c540943f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e3-0502-af26-1a4b-0303c540943f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:15:57] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:15:57] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:15:57] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:15:57] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:17:07] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.5944s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.5995s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.6037s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=9e491e44-cca1-4fb6-946d-6010abd46b41 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 755d1db1-e1e9-460f-9e79-39fc1713bad2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1597687474416 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1597687474416 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1597687907520 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1597687907520 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1597687907520 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1597687907520 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1597687474416 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1597687474416 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 2.273s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 2.278s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 2.283s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=e202c1de-48d3-4b03-99a7-e1f78ca641d1 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 62f41979-4eaa-49ab-911b-301722f4ee0f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=9e491e44-cca1-4fb6-946d-6010abd46b41&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=755d1db1-e1e9-460f-9e79-39fc1713bad2 HTTP/1.1" 200 None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=0ac5fd5b-140c-4b05-9ad7-f9211bc35ecd +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8059f3f2-430e-46b2-9703-23b67c5402f6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=e202c1de-48d3-4b03-99a7-e1f78ca641d1&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=62f41979-4eaa-49ab-911b-301722f4ee0f HTTP/1.1" 200 1556 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=39b1a0e9-2edf-497b-859b-329871500046 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 88b88069-afa7-4023-bcad-9c21a68a696f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=0ac5fd5b-140c-4b05-9ad7-f9211bc35ecd&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=8059f3f2-430e-46b2-9703-23b67c5402f6 HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.03243s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 30cf32f7-2609-4bf0-a8e1-88b0b6a5e53b +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4e9aa3ca-1f36-4094-8809-60e15776a518 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=30cf32f7-2609-4bf0-a8e1-88b0b6a5e53b&request_guid=4e9aa3ca-1f36-4094-8809-60e15776a518 HTTP/1.1" 200 2764 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.network:Query id: 01a836e5-0502-af26-1a4b-0303c540f7d3 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.cursor:sfqid: 01a836e5-0502-af26-1a4b-0303c540f7d3 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e5-0502-af26-1a4b-0303c540f7d3' +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.network:Request guid: c409b2ee-4825-4963-b412-fdf5e93ead4a +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e5-0502-af26-1a4b-0303c540f7d3?request_guid=c409b2ee-4825-4963-b412-fdf5e93ead4a HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e5-0502-af26-1a4b-0303c540f7d3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: dcc389c2-8891-49ff-9060-f3c624ad6a73 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e5-0502-af26-1a4b-0303c540f7d3?request_guid=dcc389c2-8891-49ff-9060-f3c624ad6a73 HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836e5-0502-af26-1a4b-0303c540f7d3'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 88da869b-1b80-4385-835d-d50807de0c21 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836e5-0502-af26-1a4b-0303c540f7d3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836e5-0502-af26-1a4b-0303c540f7d3'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 941f86f3-06bc-441d-a6e5-f0c006f88136 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=39b1a0e9-2edf-497b-859b-329871500046&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=88b88069-afa7-4023-bcad-9c21a68a696f HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.9972s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 0db5a686-b7a6-4654-aa4c-ffb72a9af9f6 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c7886ad1-9359-474a-bd7b-f6b81b7eae82 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=88da869b-1b80-4385-835d-d50807de0c21&request_guid=941f86f3-06bc-441d-a6e5-f0c006f88136 HTTP/1.1" 200 2765 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e5-0502-ae87-1a4b-0303c540e947 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e5-0502-ae87-1a4b-0303c540e947 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 41fd76ed-002d-47ab-b6eb-43d15fc8063e +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 312c181e-5111-44e9-8e8c-e20b36db5e2d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0db5a686-b7a6-4654-aa4c-ffb72a9af9f6&request_guid=c7886ad1-9359-474a-bd7b-f6b81b7eae82 HTTP/1.1" 200 2764 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e5-0502-af26-1a4b-0303c540f82f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e5-0502-af26-1a4b-0303c540f82f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e5-0502-af26-1a4b-0303c540f82f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7f99f07a-8ca9-44f8-b858-cdf34a19c7cb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=41fd76ed-002d-47ab-b6eb-43d15fc8063e&request_guid=312c181e-5111-44e9-8e8c-e20b36db5e2d HTTP/1.1" 200 2505 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e5-0502-b0de-1a4b-0303c540dc93 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e5-0502-b0de-1a4b-0303c540dc93 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e5-0502-b0de-1a4b-0303c540dc93' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 40f234e6-8e59-4859-9e12-78e89c68d47d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e5-0502-b0de-1a4b-0303c540dc93?request_guid=40f234e6-8e59-4859-9e12-78e89c68d47d HTTP/1.1" 200 2168 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e5-0502-b0de-1a4b-0303c540dc93' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0ed19088-ebc1-4e7d-97cf-614bde67ccad +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e5-0502-af26-1a4b-0303c540f82f?request_guid=7f99f07a-8ca9-44f8-b858-cdf34a19c7cb HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e5-0502-af26-1a4b-0303c540f82f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 88183360-eb83-4d02-a2a7-b43de8d09c12 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e5-0502-b0de-1a4b-0303c540dc93?request_guid=0ed19088-ebc1-4e7d-97cf-614bde67ccad HTTP/1.1" 200 2167 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836e5-0502-b0de-1a4b-0303c540dc93'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: a7e005f0-8c0f-4d66-a124-836b86f608a4 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836e5-0502-b0de-1a4b-0303c540dc93'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836e5-0502-b0de-1a4b-0303c540dc93'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bea4c15a-6ed8-47e3-84bf-d1b00ea0bba0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e5-0502-af26-1a4b-0303c540f82f?request_guid=88183360-eb83-4d02-a2a7-b43de8d09c12 HTTP/1.1" 200 1853 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836e5-0502-af26-1a4b-0303c540f82f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: c5de37ed-cd74-4426-8ca7-7520c6175819 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836e5-0502-af26-1a4b-0303c540f82f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836e5-0502-af26-1a4b-0303c540f82f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 511d3373-097b-4860-98c5-c2935a9945ab +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a7e005f0-8c0f-4d66-a124-836b86f608a4&request_guid=bea4c15a-6ed8-47e3-84bf-d1b00ea0bba0 HTTP/1.1" 200 2509 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e5-0502-afee-1a4b-0303c540ce87 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e5-0502-afee-1a4b-0303c540ce87 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 6de24433-836d-48d7-be56-c5cd0f3e858b +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5ca0be91-cade-4705-9594-0f196fcf5a89 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6de24433-836d-48d7-be56-c5cd0f3e858b&request_guid=5ca0be91-cade-4705-9594-0f196fcf5a89 HTTP/1.1" 200 2809 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e5-0502-b0de-1a4b-0303c540dcdf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e5-0502-b0de-1a4b-0303c540dcdf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e5-0502-b0de-1a4b-0303c540dcdf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 26aabfd8-244c-4263-a6d6-b3db166fc353 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c5de37ed-cd74-4426-8ca7-7520c6175819&request_guid=511d3373-097b-4860-98c5-c2935a9945ab HTTP/1.1" 200 2762 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e5-0502-b0de-1a4b-0303c540dcef +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e5-0502-b0de-1a4b-0303c540dcef +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 228eb4e1-92f7-4592-a3c3-dffc380a0ff4 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2d04b17b-ed61-4d3b-97f0-5f559aa5f67d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e5-0502-b0de-1a4b-0303c540dcdf?request_guid=26aabfd8-244c-4263-a6d6-b3db166fc353 HTTP/1.1" 200 1679 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e5-0502-b0de-1a4b-0303c540dcdf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 401032e4-536a-402e-8c60-3419e6f713af +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e5-0502-b0de-1a4b-0303c540dcdf?request_guid=401032e4-536a-402e-8c60-3419e6f713af HTTP/1.1" 200 1679 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836e5-0502-b0de-1a4b-0303c540dcdf'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 750e9fcc-2371-4e05-836c-3dbb695040f7 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836e5-0502-b0de-1a4b-0303c540dcdf'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836e5-0502-b0de-1a4b-0303c540dcdf'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: dd79e530-7c6d-44e7-b150-bc8a05cb7667 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=750e9fcc-2371-4e05-836c-3dbb695040f7&request_guid=dd79e530-7c6d-44e7-b150-bc8a05cb7667 HTTP/1.1" 200 2811 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e5-0502-b0de-1a4b-0303c540dd2b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e5-0502-b0de-1a4b-0303c540dd2b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=228eb4e1-92f7-4592-a3c3-dffc380a0ff4&request_guid=2d04b17b-ed61-4d3b-97f0-5f559aa5f67d HTTP/1.1" 200 2505 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e5-0502-b0de-1a4b-0303c540dd0f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e5-0502-b0de-1a4b-0303c540dd0f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 36.15s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e5-0502-b0de-1a4b-0303c540dd0f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.network:Request guid: e8fc8612-4517-45f9-b268-631c52562ad6 +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=1c090e4b-49b0-45c6-9a77-c20ae27e6b6e +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 12b91f4e-93fa-4d43-8311-7955c0c5859f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e5-0502-b0de-1a4b-0303c540dd0f?request_guid=e8fc8612-4517-45f9-b268-631c52562ad6 HTTP/1.1" 200 2168 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e5-0502-b0de-1a4b-0303c540dd0f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f7ce241d-a0a6-4cff-9e75-27aa54886f7e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e5-0502-b0de-1a4b-0303c540dd0f?request_guid=f7ce241d-a0a6-4cff-9e75-27aa54886f7e HTTP/1.1" 200 2168 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836e5-0502-b0de-1a4b-0303c540dd0f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 37b95678-47ba-4212-926f-25cab4a20ab7 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836e5-0502-b0de-1a4b-0303c540dd0f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836e5-0502-b0de-1a4b-0303c540dd0f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 20e2bbac-54d2-4e7f-b3ba-e801969262e1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=37b95678-47ba-4212-926f-25cab4a20ab7&request_guid=20e2bbac-54d2-4e7f-b3ba-e801969262e1 HTTP/1.1" 200 2506 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e5-0502-b0de-1a4b-0303c5412497 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e5-0502-b0de-1a4b-0303c5412497 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:executing SQL/command +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: a4ba715d-b6bf-4589-a1ae-ef0b135fbb54 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 388c3b30-8337-4dfb-bc2a-c2ef8b685bce +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a4ba715d-b6bf-4589-a1ae-ef0b135fbb54&request_guid=388c3b30-8337-4dfb-bc2a-c2ef8b685bce HTTP/1.1" 200 2812 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e5-0502-b0de-1a4b-0303c54124af +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e5-0502-b0de-1a4b-0303c54124af +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e5-0502-b0de-1a4b-0303c54124af' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: daca88b8-cf57-4ce1-a1b0-60277a29f8cd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e5-0502-b0de-1a4b-0303c54124af?request_guid=daca88b8-cf57-4ce1-a1b0-60277a29f8cd HTTP/1.1" 200 1671 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e5-0502-b0de-1a4b-0303c54124af' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7b77c9b6-af81-4099-b16a-f04d801a0977 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e5-0502-b0de-1a4b-0303c54124af?request_guid=7b77c9b6-af81-4099-b16a-f04d801a0977 HTTP/1.1" 200 1671 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:executing SQL/command +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836e5-0502-b0de-1a4b-0303c54124af'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: a8b96368-3b54-429f-94aa-1524f7ada381 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836e5-0502-b0de-1a4b-0303c54124af'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836e5-0502-b0de-1a4b-0303c54124af'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 02f99b52-a8bd-42a2-ae28-393bd15fefdc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a8b96368-3b54-429f-94aa-1524f7ada381&request_guid=02f99b52-a8bd-42a2-ae28-393bd15fefdc HTTP/1.1" 200 2815 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e5-0502-ae87-1a4b-0303c54132ab +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e5-0502-ae87-1a4b-0303c54132ab +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=1c090e4b-49b0-45c6-9a77-c20ae27e6b6e&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=12b91f4e-93fa-4d43-8311-7955c0c5859f HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 45.56s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=b6fc405a-398d-41b6-b822-6d3d1b482364 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0d03445e-4555-4f10-8130-0819dbb026dc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT AVERAGERECCONF,LATENCYHISTOGRAM1,ODS_ROW_PROCESS_DTM,PARENTID,ODS_EXP_ROW...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: ee4b09d8-f89c-4a20-b6ad-17ae26b93249 +DEBUG:snowflake.connector.cursor:running query [SELECT AVERAGERECCONF,LATENCYHISTOGRAM1,ODS_ROW_PROCESS_DTM,PARENTID,ODS_EXP_ROW...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT AVERAGERECCONF,LATENCYHISTOGRAM1,ODS_ROW_PROCESS_DTM,PARENTID,ODS_EXP_ROW...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 00896d78-8403-4aae-aa95-8b925d0a714d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=b6fc405a-398d-41b6-b822-6d3d1b482364&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=0d03445e-4555-4f10-8130-0819dbb026dc HTTP/1.1" 200 1557 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT AVERAGERECCONF,LATENCYHISTOGRAM1,ODS_ROW_PROCESS_DTM,PARENTID,ODS_EXP_ROW...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 075fe7d3-3768-468f-9ef9-e2d3afa45b52 +DEBUG:snowflake.connector.cursor:running query [SELECT AVERAGERECCONF,LATENCYHISTOGRAM1,ODS_ROW_PROCESS_DTM,PARENTID,ODS_EXP_ROW...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT AVERAGERECCONF,LATENCYHISTOGRAM1,ODS_ROW_PROCESS_DTM,PARENTID,ODS_EXP_ROW...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a45e656a-5546-46fd-8c60-678ebd14174d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ee4b09d8-f89c-4a20-b6ad-17ae26b93249&request_guid=00896d78-8403-4aae-aa95-8b925d0a714d HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e5-0502-af26-1a4b-0303c5414613 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e5-0502-af26-1a4b-0303c5414613 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=73 +INFO:snowflake.connector.cursor:Number of results in first chunk: 83 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e5-0502-af26-1a4b-0303c5414613' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f50c1647-48da-40ca-ab5a-2733df59e127 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e5-0502-af26-1a4b-0303c5414613?request_guid=f50c1647-48da-40ca-ab5a-2733df59e127 HTTP/1.1" 200 2451 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e5-0502-af26-1a4b-0303c5414613' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 94790c83-bef9-46f3-991b-6c2d7c2125cf +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e5-0502-af26-1a4b-0303c5414613?request_guid=94790c83-bef9-46f3-991b-6c2d7c2125cf HTTP/1.1" 200 2449 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836e5-0502-af26-1a4b-0303c5414613'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 655f3a34-84e2-46b4-b64c-a01e6b6764b8 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836e5-0502-af26-1a4b-0303c5414613'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836e5-0502-af26-1a4b-0303c5414613'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: dbb2ad82-f8bc-4971-8ff2-87c9ec368985 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=655f3a34-84e2-46b4-b64c-a01e6b6764b8&request_guid=dbb2ad82-f8bc-4971-8ff2-87c9ec368985 HTTP/1.1" 200 6483 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e6-0502-ae87-1a4b-0303c5413613 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e6-0502-ae87-1a4b-0303c5413613 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=74 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_0_7 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_0_8 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_1_7 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_1_8 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_2_3 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_2_4 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_2_5 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_2_6 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_2_7 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_2_8 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_3_0 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_3_4 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_3_5 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_3_6 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_3_7 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_3_8 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_4_4 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_4_6 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_4_7 +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_4_8 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_5_0 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_5_1 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_5_2 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_5_3 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_5_4 +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_5_7 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_5_8 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_5_9 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_6_0 +DEBUG:snowflake.connector.result_set:result batch 57 has id: data_0_6_1 +DEBUG:snowflake.connector.result_set:result batch 58 has id: data_0_6_2 +DEBUG:snowflake.connector.result_set:result batch 59 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 60 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 61 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 62 has id: data_0_6_6 +DEBUG:snowflake.connector.result_set:result batch 63 has id: data_0_6_7 +DEBUG:snowflake.connector.result_set:result batch 64 has id: data_0_6_8 +DEBUG:snowflake.connector.result_set:result batch 65 has id: data_0_7_0 +DEBUG:snowflake.connector.result_set:result batch 66 has id: data_0_7_1 +DEBUG:snowflake.connector.result_set:result batch 67 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 68 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 69 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 70 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 71 has id: data_0_7_6 +DEBUG:snowflake.connector.result_set:result batch 72 has id: data_0_7_7 +DEBUG:snowflake.connector.result_set:result batch 73 has id: data_0_7_8 +DEBUG:snowflake.connector.result_set:result batch 74 has id: data_0_7_9 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=075fe7d3-3768-468f-9ef9-e2d3afa45b52&request_guid=a45e656a-5546-46fd-8c60-678ebd14174d HTTP/1.1" 200 None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Query id: 01a836e6-0502-ae87-1a4b-0303c54134f7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:sfqid: 01a836e6-0502-ae87-1a4b-0303c54134f7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_batch:chunk size=73 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +INFO:snowflake.connector.cursor:Number of results in first chunk: 87 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e6-0502-ae87-1a4b-0303c54134f7' +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.network:Request guid: f7d4b4dc-a84e-4113-beaf-6d5c4447a4a2 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e6-0502-ae87-1a4b-0303c54134f7?request_guid=f7d4b4dc-a84e-4113-beaf-6d5c4447a4a2 HTTP/1.1" 200 2469 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836e6-0502-ae87-1a4b-0303c54134f7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Request guid: aabfc72f-2640-46ea-9c16-222f0a7940c8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836e6-0502-ae87-1a4b-0303c54134f7?request_guid=aabfc72f-2640-46ea-9c16-222f0a7940c8 HTTP/1.1" 200 2469 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836e6-0502-ae87-1a4b-0303c54134f7'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 759c4ab8-e1b2-46bc-81ce-6bbd0071798d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836e6-0502-ae87-1a4b-0303c54134f7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836e6-0502-ae87-1a4b-0303c54134f7'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6d6669d5-e6bb-4057-ac3f-03f9ad68f73c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=aQas4cGb1%2FOlaBx%2FqS9viXuAOQQ%3D HTTP/1.1" 200 25148 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=7yUPuj%2BgY2tfsMzgM3oUttScBjc%3D HTTP/1.1" 200 456659 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=i4jwJFB7%2FJX464QPbcq04vyqb2k%3D HTTP/1.1" 200 127264 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 83 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=OVtf5IVnLnS%2B6RnJpOxRVw4Npfw%3D HTTP/1.1" 200 241738 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=8fHjFo9ur%2FKmwNQGpQerS9HCPkU%3D HTTP/1.1" 200 868050 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 85 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 85 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 86 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 87 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 88 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=759c4ab8-e1b2-46bc-81ce-6bbd0071798d&request_guid=6d6669d5-e6bb-4057-ac3f-03f9ad68f73c HTTP/1.1" 200 6506 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836e6-0502-afee-1a4b-0303c5411d43 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836e6-0502-afee-1a4b-0303c5411d43 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=74 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_0_7 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_0_8 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_1_7 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_1_8 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_2_3 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_2_4 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_2_5 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_2_6 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_2_7 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_2_8 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_2_9 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_3_0 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_3_4 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_3_5 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_3_6 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_3_7 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_3_8 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_4_4 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_4_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_4_7 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_4_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_5_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_5_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_5_7 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_5_8 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_5_9 +DEBUG:snowflake.connector.result_set:result batch 57 has id: data_0_6_0 +DEBUG:snowflake.connector.result_set:result batch 58 has id: data_0_6_1 +DEBUG:snowflake.connector.result_set:result batch 59 has id: data_0_6_2 +DEBUG:snowflake.connector.result_set:result batch 60 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 61 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 62 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 63 has id: data_0_6_6 +DEBUG:snowflake.connector.result_set:result batch 64 has id: data_0_6_7 +DEBUG:snowflake.connector.result_set:result batch 65 has id: data_0_6_8 +DEBUG:snowflake.connector.result_set:result batch 66 has id: data_0_7_0 +DEBUG:snowflake.connector.result_set:result batch 67 has id: data_0_7_1 +DEBUG:snowflake.connector.result_set:result batch 68 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 69 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 70 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 71 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 72 has id: data_0_7_6 +DEBUG:snowflake.connector.result_set:result batch 73 has id: data_0_7_7 +DEBUG:snowflake.connector.result_set:result batch 74 has id: data_0_7_8 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=0oQzhZfYTHqjw3TF1aSxwiusmHo%3D HTTP/1.1" 200 1655556 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 173 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 174 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 173 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 175 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=KLA6HA18AYXM8Izt5xKNJn41%2FgU%3D HTTP/1.1" 200 3338939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 176 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_7 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 174 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 344 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 348 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 348 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_0_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=I%2BLrbjny6W5ObrQtoGzRuurJJH8%3D HTTP/1.1" 200 6659855 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 351 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 346 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_8 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 350 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 698 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_0_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=ZDACbMUBlZ41DEy8TL2ehUo3nNE%3D HTTP/1.1" 200 11393255 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 699 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 694 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 691 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 690 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 883 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=Eu5T687XFLBECwZ6%2FGOQSuzZmw0%3D HTTP/1.1" 200 26577 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 904 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 907 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 908 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 897 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 907 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=nQqNW56dP5%2FWJeqXXdf%2F21fM4fU%3D HTTP/1.1" 200 137710 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 899 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 907 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 908 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 906 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=8lRABoDscdE%2BY07qO%2Bs1CWz475k%3D HTTP/1.1" 200 138684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 910 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=gpykZDYPyMXLo9eQInVCo6NofUQ%3D HTTP/1.1" 200 27025 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=SUzRtcmgQXGR7x4W4Jk%2FfsjvbW4%3D HTTP/1.1" 200 260001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 903 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=0vROsFQefjPKCbxTdhlnYQSMU4Y%3D HTTP/1.1" 200 491328 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 909 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 900 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 912 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 906 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=qBfqbA8jDb8eOf86y6N8Bj7aL%2Bs%3D HTTP/1.1" 200 845859 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 906 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 909 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 902 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=z2IyOzJ3Bxx0kWgWc0Pc30ZGEGU%3D HTTP/1.1" 200 1660034 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 89 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 88 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 87 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 90 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 176 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=XLU6OIWg469KSPccVgDcTCiN%2B2o%3D HTTP/1.1" 200 256787 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 178 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=ME6zjdUsfJJJgcMv%2FoYpFMkcIh8%3D HTTP/1.1" 200 3443978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 180 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 356 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 358 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 359 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 356 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=dQnEIOQOq4rPoXnTlsH2iK%2ByIBo%3D HTTP/1.1" 200 6733128 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 359 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 708 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 715 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 719 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 712 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=EZuxnAJv5bYBAXfAI7yTRk%2FjeDU%3D HTTP/1.1" 200 1997319 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 712 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 907 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=nFoN43EX%2BZMDbXJ%2Fgg2SJLYfurY%3D HTTP/1.1" 200 26808 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 906 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=%2BH87gZ0S4MOjGUkGxyPdKxKGXdI%3D HTTP/1.1" 200 136396 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 31 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 31 +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 31, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 903 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 914 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 918 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 910 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 908 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=%2F8OaJj5fcvOefH9ZzyaBIqs6LeA%3D HTTP/1.1" 200 255690 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 904 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 949 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1023 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1025 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=t%2BojnIEfG%2B37f9xYQSDnGE8QWGA%3D HTTP/1.1" 200 489340 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1030 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1030 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 938 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 54 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 54 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 54, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 948 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 944 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 938 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1025 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1027 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 937 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1025 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 939 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 939 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1028 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 896 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 583 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1029 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1028 +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1027 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1025 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=ZKXddl3LULi2%2BDduUozk%2F7luwd4%3D HTTP/1.1" 200 1007203 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1025 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1026 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 90 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 91 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1026 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1024 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 176 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1027 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 177 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1028 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1023 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 179 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 176 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1027 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1027 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1026 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1020 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1027 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1029 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1030 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1024 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1023 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1029 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1026 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1022 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1027 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 62 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 85 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=IoL8XEkAzVM%2FXkF2VIHl03gZ%2FFA%3D HTTP/1.1" 200 1007869 +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 91 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 89 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_7 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_7 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=U8RWQUkN7fE4caeGhUnTMPtlsDw%3D HTTP/1.1" 200 6652773 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 179 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 178 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 174 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 175 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_7 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_7 with existing session +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 180 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 357 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 354 +DEBUG:snowflake.connector.ocsp_snowflake:The lock directory exists. Other process may be updating the cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json.lck +DEBUG:snowflake.connector.ocsp_snowflake:Failed to locate OCSP response cache file. No worry. It will validate with OCSP server: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 353 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 357 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 357 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:The lock directory exists. Other process may be updating the cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json.lck +DEBUG:snowflake.connector.ocsp_snowflake:Failed to locate OCSP response cache file. No worry. It will validate with OCSP server: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=H1NNNSsfiTyNSy0DkgZP%2FhGTqWI%3D HTTP/1.1" 200 484051 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 714 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=QcXE2W33Y%2FkFNbvB1uWR4jMAj9I%3D HTTP/1.1" 200 3481323 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_1_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=vORD88No0egUKsFeF9jW6xZGvf8%3D HTTP/1.1" 200 8731971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 716 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 714 +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 710 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 712 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 739 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 355 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 354 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 350 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 353 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 355 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 706 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 710 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_1_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=rJW2S8XKoxfbg%2FYIrg34VPv4MTM%3D HTTP/1.1" 200 6670161 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 705 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 713 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=QNxrs0Psz%2BYptqGIOd6JTmjHy1Y%3D HTTP/1.1" 200 11235062 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 714 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=ka0LSTenC7B%2BD6AQYvVLSmNt4dU%3D HTTP/1.1" 200 1719536 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=DUHUUdpyvy1T3VhCpBak6m0EGcQ%3D HTTP/1.1" 200 3441450 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=ji6oLZNQlX3MSJMjgIrVO%2FoZI7w%3D HTTP/1.1" 200 1713097 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 911 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=3xnBKQadzP0S%2Bphc7zc66Hqhbb0%3D HTTP/1.1" 200 27016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 915 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=Hi712dJcleMCEx%2Fd89gvG9R%2FM4w%3D HTTP/1.1" 200 117774 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=%2F7DkQF3OmTy1Coleu%2FtbMavsZ%2FI%3D HTTP/1.1" 200 27016 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 907 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=TXIPk%2FkH5zFgkUcTZfv86DpAY4Y%3D HTTP/1.1" 200 117774 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 902 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 917 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 917 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 911 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=jwmA7Mz7ZoBZB0fyglo480IHV%2FI%3D HTTP/1.1" 200 233035 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 910 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 904 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=006EiNFXrgq7rVb1DcIIa5xJJLo%3D HTTP/1.1" 200 233035 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 31 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 31, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1021 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 31 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 31, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 903 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 912 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 915 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 912 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 915 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 905 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 905 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 41 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 910 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 913 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 924 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1016 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1031 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1020 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1031 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1029 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1030 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 41 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 41, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1020 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1032 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1035 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1033 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1019 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1030 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1029 +DEBUG:snowflake.connector.ocsp_snowflake:The lock directory exists. Other process may be updating the cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json.lck +DEBUG:snowflake.connector.ocsp_snowflake:Failed to locate OCSP response cache file. No worry. It will validate with OCSP server: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1017 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1032 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1032 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1029 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1031 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=1FI6G2tPDJATEZzoUK7PvsWTcHI%3D HTTP/1.1" 200 474327 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1029 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=yzkwRYQNb5OT9mAgcz9RNCzR8Ds%3D HTTP/1.1" 200 474327 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1019 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1023 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1029 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1028 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1033 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1033 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1033 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 725 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 89 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 90 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 91 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 91 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 91 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 181 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=ptIA9beh4jhYqosgXwIoptPNrEs%3D HTTP/1.1" 200 892721 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 180 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 360 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 360 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 360 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 361 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 360 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_8 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 359 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 719 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 720 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_2_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=anQBcZ9NWakTcB7SUqADC5Mq2iw%3D HTTP/1.1" 200 4966129 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 721 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 711 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 718 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 53 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 53 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 53, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1021 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1025 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1023 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1026 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1028 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1024 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1016 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1025 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1029 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1027 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1020 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1028 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1029 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1029 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1024 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1025 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1026 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1025 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1026 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1027 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_2_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=oqLRsbp0%2BDM8nZf5i0wpl6%2Fs52g%3D HTTP/1.1" 200 6645047 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=aRgQI161MlOw3q7qx6KpQDcsuUs%3D HTTP/1.1" 200 3402413 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=Jzu%2FKtR1mXtfcqOHSCmrXmrIDAk%3D HTTP/1.1" 200 1707454 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1018 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1019 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 367 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 91 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 91 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 91 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 90 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 179 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 181 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 180 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 360 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 360 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 360 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 361 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 360 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_7 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_8 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_0 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 916 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_3_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=SDxDjVlTPejtbGGSPN%2Bte5uIXCI%3D HTTP/1.1" 200 26808 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 914 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 904 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 912 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 905 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_1 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_3_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=c7k8CPK7t3s2qEMy5u2rzQBU5z8%3D HTTP/1.1" 200 136396 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_8 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 24 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 17 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 17 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 17, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 912 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=RsYEH1%2FRVooOBTqBA4y%2BdBeOpn8%3D HTTP/1.1" 200 1714224 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=YsrpiSawgLR6MCJEP7WjeetV3sk%3D HTTP/1.1" 200 892721 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=BMwcmQpyDGU3VkAAZa5G3m2uzeQ%3D HTTP/1.1" 200 3456197 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=OopAbUJOttbHP%2BC02PQhWiqxjZ4%3D HTTP/1.1" 200 6630337 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 931 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_3_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=dMiivhtKnYjXIEM85kTPH%2FRh5bI%3D HTTP/1.1" 200 255690 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 359 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 719 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 720 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 721 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 711 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 718 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_9 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=Mgl5638RP4S7S3AdJvqDUzif%2BU0%3D HTTP/1.1" 200 13293367 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_9 +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_9 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=ZwStLkM3BjD5RqYQR0VESW4ZzPs%3D HTTP/1.1" 200 8861617 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 909 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 912 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 917 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=M9WFS7pviIBJLFNDJ6VzrAU2BYI%3D HTTP/1.1" 200 26592 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 899 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 910 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 881 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 921 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 913 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=hs%2BdQUrgA4rfN6XUxhgnzxyFJs8%3D HTTP/1.1" 200 135529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 923 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 906 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 911 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 24 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 24, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 909 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 908 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_3_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=HAL8HHxgTE3Xf9ATfQ8vh1ZPCw4%3D HTTP/1.1" 200 484051 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 907 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 916 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 49 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_4 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 91 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 176 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 177 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_3_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=%2Bx6BTHzGuXmmpFRar1Bi1u%2BkiwM%3D HTTP/1.1" 200 1007203 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 179 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 176 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_3_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=RKzUUjVf2kEhPdUtWijOzMbBhw4%3D HTTP/1.1" 200 1719536 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 355 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 354 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 350 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 353 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 355 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_8 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 706 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 710 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_3_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=9LLy%2FH6DYqQJ9tI5WhRX6ons2LQ%3D HTTP/1.1" 200 10346973 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 705 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 713 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 714 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 714 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_0 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 913 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 911 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_4_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=fFPZM5ow3HonRSoUGpf3dXqjzy8%3D HTTP/1.1" 200 26588 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_3_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=EPaUsHyDsu4DsfN%2FIE9HVr%2B74eg%3D HTTP/1.1" 200 3436689 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 904 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 915 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_1 with existing session +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 31 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_4_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=rAU7RP%2FOiPPJaotdVsW4ieRVFZE%3D HTTP/1.1" 200 134317 +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 31, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 907 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_3_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=iJ5hQV5JrzMHFxcTtwIQg%2BSdXWw%3D HTTP/1.1" 200 6658943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1018 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1033 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1035 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1033 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1018 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=4At6HCGOy7T9T%2BY6YC4rH6NU%2B94%3D HTTP/1.1" 200 256127 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_9 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_9 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 44 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 912 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 902 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_4_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=KNKBcuNHHfSp9ExGv05lwmTO93E%3D HTTP/1.1" 200 254295 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 31 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 31 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 31, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 903 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 908 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 63 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 913 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 63 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 63, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1029 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1028 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_3 with existing session +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1032 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1023 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 50 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1032 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_4_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=XRRbTpgIWKCRbkrWI3HZpwIvagY%3D HTTP/1.1" 200 484128 +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 50 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 50, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1033 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 921 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 921 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 938 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 944 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 905 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 915 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 44 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 44, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 897 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 901 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 898 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 918 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 154 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 903 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 900 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 897 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 890 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 896 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_4 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 889 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 896 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_4_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=0IkLV5u%2FvSGK3465tF89Lm1JfuA%3D HTTP/1.1" 200 1001684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 897 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_5 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 896 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 88 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 898 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 901 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 908 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 899 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 178 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 178 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 177 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 183 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 893 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 901 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_7 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 899 +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_7 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 179 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 359 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 895 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 356 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 356 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 358 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 898 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 347 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 892 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 895 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 893 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 901 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 902 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 893 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 896 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 897 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 488 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 706 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 711 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 712 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_4_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=miaH1QcQBi9O8MlC9CQemFtJM1Y%3D HTTP/1.1" 200 9025459 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 719 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 714 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 708 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 41 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 42 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_5 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_5 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 88 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 90 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 88 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_6 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 175 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 178 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 182 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_7 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=NdJz2lfSFPtIXd20a%2BKdsbeSKHM%3D HTTP/1.1" 200 483841 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_7 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 178 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 351 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=V7X8Ualu4Gk3LA3M0wiIxO0KIF4%3D HTTP/1.1" 200 6689390 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 358 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 357 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 353 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 359 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_4_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=JgaElUi8qzuDl8yo9aSnIM4HN%2Fs%3D HTTP/1.1" 200 1689923 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_4_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=c%2BW5Ib9TXJOf7Svq5SLKm0QZYvM%3D HTTP/1.1" 200 3409764 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 42 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_0 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 913 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_5_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=5Fomie49GNXAHbmR9HQlBlanpLM%3D HTTP/1.1" 200 26592 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 902 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 906 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 913 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 899 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 42 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 43 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_1 with existing session +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_5_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=2w72bhcPLA0eu4IP5JpE2iE%2BhIc%3D HTTP/1.1" 200 135529 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_4_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=%2B0juUmkrlVXJywUS8f4QFQqUkjY%3D HTTP/1.1" 200 6649064 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=0MEjF3KfTA%2BUedEg5VYZQ4kzreo%3D HTTP/1.1" 200 1005513 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=66PmiY8e%2BkyJy0EDd6ooSzcSglI%3D HTTP/1.1" 200 3386309 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=tJcxY2JIxE2%2By7kv%2FRhA9%2FSlZmU%3D HTTP/1.1" 200 1704083 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 43 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 902 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 907 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 917 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 907 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_8 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 43 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 44 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 712 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 706 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_5_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=Zd%2Fz0tTw%2FHconjmwRSmcZOzrWuw%3D HTTP/1.1" 200 256127 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 712 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 713 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 709 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 707 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_0 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=9t5TjQLWlvhYGdvT4CBJoG100HI%3D HTTP/1.1" 200 26588 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 907 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 43 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_8 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=JVUqp9LWrQ5wkf0LkXqbecc%2B3AA%3D HTTP/1.1" 200 8014141 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 885 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=12gV54yeVp5YqEwPhKTdymFXPZw%3D HTTP/1.1" 200 134317 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 31 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 44 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 31, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 911 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 44 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 45 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 45 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 43 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 43, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 904 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 907 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 17 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_5_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=DxQ7puXeXyKUyV8HqJ%2FltlZlBks%3D HTTP/1.1" 200 483841 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 17 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 17, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 879 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 925 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 939 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 942 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 938 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 944 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 944 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 938 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 876 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=QQ7mlvPOClCipJtNcqAJyUjOQnY%3D HTTP/1.1" 200 254295 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 948 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 945 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 923 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 942 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 924 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 938 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 937 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 937 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 805 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 918 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 45 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 923 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 46 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 46 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 46 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 907 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 47 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 912 +DEBUG:snowflake.connector.result_set:user began consuming result batch 47 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 913 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_5 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 89 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 88 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 90 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 88 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_5_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=QNTqtvhTg9uv7KpvvutNu6yCWIc%3D HTTP/1.1" 200 1005513 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 47 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 48 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 48 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 89 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 175 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 182 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 48 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 49 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 49 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 178 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 351 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 358 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 357 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=m9w87GdF1nc4ZnXLgFDS9Ahp3Jg%3D HTTP/1.1" 200 484128 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 353 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 359 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:user finished consuming result batch 49 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 50 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 50 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 712 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 706 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_5_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=qiRITLHm2IMYV6qGRXaensbKnMQ%3D HTTP/1.1" 200 13134851 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 712 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 713 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 709 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 707 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 50 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 51 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_9 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_5_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=mmZFMCvXVf9lTcRv995LD63RaIU%3D HTTP/1.1" 200 1719052 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_8 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_5_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=5GseK4bN5NKEzf3DqozgJ%2FcJJ10%3D HTTP/1.1" 200 3466259 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_5_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=%2B9LAW6fb8d5SGx561Qwjph3V55Y%3D HTTP/1.1" 200 6648791 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 38 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 38 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 38, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 210 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_4 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 88 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 183 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 177 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 179 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 359 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 356 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=ao4PrKrp3ot5tnQf42d0mOkDJ6c%3D HTTP/1.1" 200 1693136 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 356 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_9 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.result_set:user began consuming result batch 51 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 358 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_9 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 347 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 41 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 42 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 907 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_8 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 916 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_5_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=GTbQfQWvOWGaT2IuKdJxmgyE6cA%3D HTTP/1.1" 200 2027403 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 919 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 904 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 51 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 52 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_8 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=4uCrJLIlfaRjPj7Z3rnDRDjslZg%3D HTTP/1.1" 200 5533836 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_0 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 52 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 912 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=vK0lQhwl3%2ByUj5X%2B4xEsbJndLK8%3D HTTP/1.1" 200 6783557 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 915 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=8S9s2Julzha7DGIO8o0v0ifKR0Q%3D HTTP/1.1" 200 1001684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 908 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_6_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=NsR7IEgCglXxj0xClkhfrK0J%2Bkg%3D HTTP/1.1" 200 26316 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=6xN3XMXTV0Lx1mQ5DvUExE7W5H0%3D HTTP/1.1" 200 3480993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 915 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 904 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 908 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 914 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 52 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 53 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_6_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=eY1c8%2FH4x%2FU5w%2FxR7Cj68lBK2co%3D HTTP/1.1" 200 136721 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 42 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 706 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 711 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 712 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 719 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 708 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 42 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 43 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 43 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=xMh552V8k3qSPXpUvmHLU3kKySo%3D HTTP/1.1" 200 25148 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 903 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 901 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 43 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 44 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=3DgmKfMfFZgCAl29jiVx3bkuQAg%3D HTTP/1.1" 200 127264 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 31 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 53 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 31, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 910 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 53 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 54 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_6_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=b8jNpeJW4FLJw11l6Sce%2Fkh8kdI%3D HTTP/1.1" 200 258794 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 27 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 44 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 64 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 915 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 54 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 64 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 64, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 938 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 938 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 938 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 930 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 44 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 907 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 45 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 45 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 896 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 907 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 895 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 903 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=ru%2FceGGp2yKqf3B%2F1RtTbThTSBc%3D HTTP/1.1" 200 241738 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 905 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 915 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 896 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 45 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 46 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 46 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 27 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 27, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 893 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 918 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 924 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=f%2FMQv045DPjZYLmD8mU5rh5gbDE%3D HTTP/1.1" 200 456659 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 921 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 54 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 55 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 919 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 55 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 917 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 928 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 897 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 923 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 899 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 920 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 892 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 865 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 55 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 925 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 56 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 56 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 923 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 920 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_4 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 85 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 914 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 56 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 57 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 919 +DEBUG:snowflake.connector.result_set:user began consuming result batch 57 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 916 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 277 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 87 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:user finished consuming result batch 46 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 47 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 57 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 58 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 47 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_4 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 58 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 83 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_6 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 47 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 48 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 179 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=sroX4XRkAOzEJ4ZUgE5LJvBB88U%3D HTTP/1.1" 200 874423 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 176 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 48 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 176 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_5 with existing session +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 177 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 85 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:user finished consuming result batch 58 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 85 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 59 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 88 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 86 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 87 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 88 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 48 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 49 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 49 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_6 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_6 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 173 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 174 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 173 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 175 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 176 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.result_set:user finished consuming result batch 49 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 50 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:user began consuming result batch 50 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_7 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 174 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 344 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 348 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=WPnCTi48nFo5ebmiRvV%2BmXh%2FY1c%3D HTTP/1.1" 200 6743248 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 348 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 351 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 346 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 50 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 51 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 51 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_8 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 350 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 698 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 699 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 694 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 691 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 701 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 51 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 52 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_9 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_6_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=0HA3hcECk1vkpT0X%2BnHCBGYjVzE%3D HTTP/1.1" 200 489293 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 59 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 351 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 354 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 352 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 357 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 357 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 59 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 60 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_8 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_6_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=s9ekY7dft%2BOIv%2FvBb2XFPg67c8E%3D HTTP/1.1" 200 6709734 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_6_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=D5MsiuQY46IZgia1jLMYoZlLkM0%3D HTTP/1.1" 200 848463 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_6_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=3aFKMAiJfg2JhHOQPi5pMWu8xzU%3D HTTP/1.1" 200 1679083 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_6_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=ylG8Cf1wCJdTNrowGB0LbLoPBbo%3D HTTP/1.1" 200 3426030 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 60 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 707 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 710 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 706 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 709 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 719 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_6_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=hABR112Qcp3KIWgCTjEA9RYoyWU%3D HTTP/1.1" 200 3476989 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 60 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 61 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_0 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=Nw2LEAV5kGB5%2FDu%2F%2FP5%2FfGLSozI%3D HTTP/1.1" 200 1710071 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=puXsK0sHb3iuXpkyx3J1TWymjns%3D HTTP/1.1" 200 3432970 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 61 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 708 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=eD5eeiNje41mrHRH4i8ab%2BGjqQE%3D HTTP/1.1" 200 13164649 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_7_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=oG7YebTBaf5a9v6rFVvYmZpwI5o%3D HTTP/1.1" 200 27025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 909 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 61 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 62 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_7_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=WdTZ2Wu1fayz3Y7VKIV%2BQrlRo0Y%3D HTTP/1.1" 200 138684 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_9 +DEBUG:snowflake.connector.result_set:user began consuming result batch 52 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_9 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 908 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=4pm3LxVahJIgJ3PXJvNOPV0Sccg%3D HTTP/1.1" 200 1494755 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 904 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 52 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 53 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 895 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 899 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 33 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 901 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_0 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 915 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 908 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=tZ2RgPukxk%2BriaN2C3v9VIZbWdE%3D HTTP/1.1" 200 26316 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 913 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 18 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_8 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 913 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 913 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 62 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 63 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 53 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 927 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_7_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=iM2wcP9SqM1GNy8TPN6qeRC44fE%3D HTTP/1.1" 200 260001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 906 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 901 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 53 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 54 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 54 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 33 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 33, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 911 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=noNXm04WgITHCj7QblWIvJA%2BwQY%3D HTTP/1.1" 200 136721 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 886 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 899 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 54 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 55 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 63 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 905 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=uumONr0CAn8QofKz04BfBt4Ul%2Bk%3D HTTP/1.1" 200 258794 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 909 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 900 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 63 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 64 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 64 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 18 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 18, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 895 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 895 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 902 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 892 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 899 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 233 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 64 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 65 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 65 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 65 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_4 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 66 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 66 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 88 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 87 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 90 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 90 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 90 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_7_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=dnm8W6GkKRB4MTVGRKrMUwudkSk%3D HTTP/1.1" 200 845859 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 66 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 67 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 67 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 90 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 178 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 176 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 178 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 178 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 180 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.result_set:user finished consuming result batch 67 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 68 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_7 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_7_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=XBdiASIwrVRlX%2FBIzuPRE%2B4xudg%3D HTTP/1.1" 200 6579360 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_7_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=HKQoDIXwfnlGeaIAnSaVl3Ju848%3D HTTP/1.1" 200 491328 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_set:user began consuming result batch 68 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 179 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 356 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 358 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 359 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 356 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 359 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 68 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 69 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 69 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 708 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 715 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 719 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 712 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 712 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 69 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 70 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_7_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=SH9NukwFUsMWglKwCDBSS2k0kZg%3D HTTP/1.1" 200 13143810 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_9 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_7_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=D5IbUjQbdl9IX0mBgnn6yw4cVe0%3D HTTP/1.1" 200 1685801 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_7_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=tbQkrXpu9C7BDlVHPfWWOobBsHM%3D HTTP/1.1" 200 3451907 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 70 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_9 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 903 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e5-0502-af26-1a4b-0303c5414613_0/main/data_0_7_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100687&Signature=%2BCmDMtpDoraQWB6yRkoxUqNQkXU%3D HTTP/1.1" 200 802680 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 910 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 911 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 70 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 71 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 71 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 909 +DEBUG:snowflake.connector.result_set:user began consuming result batch 55 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 65 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 65, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 920 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 71 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 72 +DEBUG:snowflake.connector.result_set:user began consuming result batch 72 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 31 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 31, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 930 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 874 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 72 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 73 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 872 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 55 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 56 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 56 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 883 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 294 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 56 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 57 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 57 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 85 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 57 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 58 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 58 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 87 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 89 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 58 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 59 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 59 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 89 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 179 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 176 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 176 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 177 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 59 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 60 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_7 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=Pr6jsaAgFb1DSl0b3GGMpU%2FIqes%3D HTTP/1.1" 200 489293 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=CUd%2FYvpCccb5R2%2FYmYm70bulLGY%3D HTTP/1.1" 200 848463 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_7 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:user began consuming result batch 60 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=eD%2BtOL2PMH0axEDVzRTu9ZCBId8%3D HTTP/1.1" 200 1679083 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 351 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 354 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 352 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 357 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 357 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 60 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 61 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_8 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=2DOtTemyD42t%2FqRca7rqe%2F%2BlRhc%3D HTTP/1.1" 200 6714513 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_8 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 61 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 707 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 710 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=qrTlk1tyWj3rZin6bjlBgNZRILk%3D HTTP/1.1" 200 3424012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 706 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 709 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 719 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=4OJ7LL6VXyciadA6RFZKc9FQhVo%3D HTTP/1.1" 200 6675411 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 61 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 62 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 62 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 708 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 908 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=KoJkma%2BvE4Thq0hMjbnL1v%2B1rMc%3D HTTP/1.1" 200 26577 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 910 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 909 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 62 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 63 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=zSj2D9Jp2sZrSD6ZhT1qjV8%2ByH0%3D HTTP/1.1" 200 137710 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 65 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 73 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 65 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 65, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 880 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 882 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 63 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 909 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 63 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 876 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 64 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 881 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 875 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=jm5Ck%2B5lmpEpxRUWjRRy2rJW1ek%3D HTTP/1.1" 200 256787 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 872 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 885 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 73 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 74 +DEBUG:snowflake.connector.result_set:user began consuming result batch 74 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 802 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 74 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:20:33] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&submit=Submit HTTP/1.1" 500 - +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 64 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 899 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 908 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 902 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 64 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 65 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 65 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 905 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 902 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 912 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 901 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 899 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 915 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 908 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 905 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 914 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 912 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 914 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 913 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 916 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 915 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 912 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 181 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 65 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 66 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 66 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 85 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_4 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_set:user finished consuming result batch 66 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 67 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:user began consuming result batch 67 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_5 with existing session +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 88 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 91 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 67 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 68 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_6 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:user began consuming result batch 68 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_6 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_6 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=N3z4WAWflxyX%2FjhWgSEhLdz%2Bu5M%3D HTTP/1.1" 200 1715487 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 179 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 178 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 174 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 175 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 68 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 69 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=Y1tYrDfduxdsGuIbTo1DaaLE9Gk%3D HTTP/1.1" 200 489340 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 69 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_7 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 180 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 357 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 354 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 353 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=H14sdOoTKIhvBprmQOqtUw47vh4%3D HTTP/1.1" 200 6679445 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 357 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 357 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 69 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 70 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_8 with existing session +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=4sLshyHQVmOFE4kqSX98qU8Om4k%3D HTTP/1.1" 200 1013697 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=mmHdWZ%2FLaF5BX1KueOo6YLdUbtE%3D HTTP/1.1" 200 6273629 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100691&Signature=hcKpJRsaRBj4EAaq%2FMPzmC%2B6pZc%3D HTTP/1.1" 200 3441865 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 70 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 716 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 710 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 712 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 710 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 70 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 71 +DEBUG:snowflake.connector.result_set:user began consuming result batch 71 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 916 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 71 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 72 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 72 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 911 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 72 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 73 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.arrow_iterator:Batches read: 30 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 31 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 73 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 31, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 905 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 73 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 74 +DEBUG:snowflake.connector.result_set:user began consuming result batch 74 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 30 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 30, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 338 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 74 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:20:45] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zblA.sRr6hnl67BtOzKCt-9HVEU7BbrI&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:20:46] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:20:46] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:20:46] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:20:47] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:21:55] "POST /submit HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:21:55] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:21:55] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:21:55] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:21:55] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:21:55] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:21:55] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:21:55] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:21:55] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:21:55] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:21:55] "GET /js/main.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 290.1s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 290.1s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 290.1s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=ca0a7436-3705-47c5-b766-aeb0f73546e2 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5162a880-ec3b-4ea7-8e46-5ce137d1b8f9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=ca0a7436-3705-47c5-b766-aeb0f73546e2&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=5162a880-ec3b-4ea7-8e46-5ce137d1b8f9 HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=40786c49-8614-45cd-9c11-c11e7ab522cd +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 57e287c8-16b1-41f4-addb-0041e0dc4455 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=40786c49-8614-45cd-9c11-c11e7ab522cd&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=57e287c8-16b1-41f4-addb-0041e0dc4455 HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 287.4s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: d22ef5f9-fcac-488a-b84f-fc435e22703f +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ce86c590-bfcc-4f9c-af45-1ca6693a5e5a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d22ef5f9-fcac-488a-b84f-fc435e22703f&request_guid=ce86c590-bfcc-4f9c-af45-1ca6693a5e5a HTTP/1.1" 200 2767 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836ea-0502-ae87-1a4b-0303c5422bcb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836ea-0502-ae87-1a4b-0303c5422bcb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836ea-0502-ae87-1a4b-0303c5422bcb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 316f9737-766c-436a-8e65-23f9b197128e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836ea-0502-ae87-1a4b-0303c5422bcb?request_guid=316f9737-766c-436a-8e65-23f9b197128e HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836ea-0502-ae87-1a4b-0303c5422bcb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 72a2b5fb-f880-4adb-812c-1f580021cfe1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836ea-0502-ae87-1a4b-0303c5422bcb?request_guid=72a2b5fb-f880-4adb-812c-1f580021cfe1 HTTP/1.1" 200 1849 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836ea-0502-ae87-1a4b-0303c5422bcb'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 3564cb38-7079-491d-87f5-afbcc05994bd +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836ea-0502-ae87-1a4b-0303c5422bcb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836ea-0502-ae87-1a4b-0303c5422bcb'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e0cbbe26-e0f1-4f8c-b1a7-a7002b68acaa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3564cb38-7079-491d-87f5-afbcc05994bd&request_guid=e0cbbe26-e0f1-4f8c-b1a7-a7002b68acaa HTTP/1.1" 200 2766 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836ea-0502-afee-1a4b-0303c5425247 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836ea-0502-afee-1a4b-0303c5425247 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 2af6f173-22a0-4c5c-ad26-fa127818bcb0 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 548a933f-f182-40d1-9e4e-d8682b6f33eb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2af6f173-22a0-4c5c-ad26-fa127818bcb0&request_guid=548a933f-f182-40d1-9e4e-d8682b6f33eb HTTP/1.1" 200 2506 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836ea-0502-af26-1a4b-0303c542397b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836ea-0502-af26-1a4b-0303c542397b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836ea-0502-af26-1a4b-0303c542397b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cb90613c-bb07-4e59-ac07-8a8c02039329 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836ea-0502-af26-1a4b-0303c542397b?request_guid=cb90613c-bb07-4e59-ac07-8a8c02039329 HTTP/1.1" 200 2164 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836ea-0502-af26-1a4b-0303c542397b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9a733e71-a227-45fa-b650-ac0dbb4f9799 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836ea-0502-af26-1a4b-0303c542397b?request_guid=9a733e71-a227-45fa-b650-ac0dbb4f9799 HTTP/1.1" 200 2166 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836ea-0502-af26-1a4b-0303c542397b'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: a020936d-8938-4787-bdbf-fd566b356bdd +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836ea-0502-af26-1a4b-0303c542397b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836ea-0502-af26-1a4b-0303c542397b'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 26893b11-5573-4576-8f71-50df933bb670 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a020936d-8938-4787-bdbf-fd566b356bdd&request_guid=26893b11-5573-4576-8f71-50df933bb670 HTTP/1.1" 200 2510 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836ea-0502-afee-1a4b-0303c5425277 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836ea-0502-afee-1a4b-0303c5425277 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 634deff0-0752-418d-8602-8bb05a9d8bb0 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 25609123-61bf-4ac8-8a7d-935cee8b6884 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=634deff0-0752-418d-8602-8bb05a9d8bb0&request_guid=25609123-61bf-4ac8-8a7d-935cee8b6884 HTTP/1.1" 200 2816 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836ea-0502-ae87-1a4b-0303c5422bf7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836ea-0502-ae87-1a4b-0303c5422bf7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836ea-0502-ae87-1a4b-0303c5422bf7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6afd339d-b737-43bb-9157-00bb933cdfa8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836ea-0502-ae87-1a4b-0303c5422bf7?request_guid=6afd339d-b737-43bb-9157-00bb933cdfa8 HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836ea-0502-ae87-1a4b-0303c5422bf7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fb85c902-14e5-41ff-9eb3-e17984e76842 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836ea-0502-ae87-1a4b-0303c5422bf7?request_guid=fb85c902-14e5-41ff-9eb3-e17984e76842 HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836ea-0502-ae87-1a4b-0303c5422bf7'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: b7b04f04-e1e5-4fcd-9755-895c88c9c474 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836ea-0502-ae87-1a4b-0303c5422bf7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836ea-0502-ae87-1a4b-0303c5422bf7'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3e5107e8-d2e6-4a72-a4a9-ddb3746da8b6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b7b04f04-e1e5-4fcd-9755-895c88c9c474&request_guid=3e5107e8-d2e6-4a72-a4a9-ddb3746da8b6 HTTP/1.1" 200 2812 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836ea-0502-b0de-1a4b-0303c5421c1f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836ea-0502-b0de-1a4b-0303c5421c1f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 289.6s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=2c4c7edf-1de7-4727-9379-48b476a48432 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ed2cf1e5-c90c-4774-b4d2-7c585a0a9f83 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=2c4c7edf-1de7-4727-9379-48b476a48432&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=ed2cf1e5-c90c-4774-b4d2-7c585a0a9f83 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT AVERAGERECCONF,LATENCYHISTOGRAM1,ODS_ROW_PROCESS_DTM,PARENTID,ODS_EXP_ROW...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: a401b296-606e-4381-a886-89d88cee1ff8 +DEBUG:snowflake.connector.cursor:running query [SELECT AVERAGERECCONF,LATENCYHISTOGRAM1,ODS_ROW_PROCESS_DTM,PARENTID,ODS_EXP_ROW...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT AVERAGERECCONF,LATENCYHISTOGRAM1,ODS_ROW_PROCESS_DTM,PARENTID,ODS_EXP_ROW...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1d58418a-5f93-43e9-b83e-5398b0b484d5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a401b296-606e-4381-a886-89d88cee1ff8&request_guid=1d58418a-5f93-43e9-b83e-5398b0b484d5 HTTP/1.1" 200 6494 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836ea-0502-b1d6-1a4b-0303c54245db +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836ea-0502-b1d6-1a4b-0303c54245db +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=74 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836ea-0502-b1d6-1a4b-0303c54245db' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0ee82bef-c199-4def-ac7b-1a16ed550c15 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836ea-0502-b1d6-1a4b-0303c54245db?request_guid=0ee82bef-c199-4def-ac7b-1a16ed550c15 HTTP/1.1" 200 2272 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836ea-0502-b1d6-1a4b-0303c54245db' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7342b03a-36ae-447f-b46f-8a1be37f3e5e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836ea-0502-b1d6-1a4b-0303c54245db?request_guid=7342b03a-36ae-447f-b46f-8a1be37f3e5e HTTP/1.1" 200 2276 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836ea-0502-b1d6-1a4b-0303c54245db'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 06d12974-6430-4109-a3b2-33239ef3cb3d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836ea-0502-b1d6-1a4b-0303c54245db'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836ea-0502-b1d6-1a4b-0303c54245db'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a37ce8b9-86eb-4859-90e5-800643b431ae +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=06d12974-6430-4109-a3b2-33239ef3cb3d&request_guid=a37ce8b9-86eb-4859-90e5-800643b431ae HTTP/1.1" 200 6515 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836ea-0502-ae87-1a4b-0303c5422c83 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836ea-0502-ae87-1a4b-0303c5422c83 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=74 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_0_7 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_0_8 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_1_7 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_1_8 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_2_3 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_2_4 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_2_5 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_2_6 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_2_7 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_2_8 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_2_9 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_3_0 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_3_4 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_3_5 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_3_6 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_3_7 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_3_8 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_4_4 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_4_6 +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_4_7 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_4_8 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_5_0 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_5_1 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_5_2 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_5_3 +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_5_4 +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_5_7 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_5_8 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_5_9 +DEBUG:snowflake.connector.result_set:result batch 57 has id: data_0_6_0 +DEBUG:snowflake.connector.result_set:result batch 58 has id: data_0_6_1 +DEBUG:snowflake.connector.result_set:result batch 59 has id: data_0_6_2 +DEBUG:snowflake.connector.result_set:result batch 60 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 61 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 62 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 63 has id: data_0_6_6 +DEBUG:snowflake.connector.result_set:result batch 64 has id: data_0_6_7 +DEBUG:snowflake.connector.result_set:result batch 65 has id: data_0_6_8 +DEBUG:snowflake.connector.result_set:result batch 66 has id: data_0_7_0 +DEBUG:snowflake.connector.result_set:result batch 67 has id: data_0_7_1 +DEBUG:snowflake.connector.result_set:result batch 68 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 69 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 70 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 71 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 72 has id: data_0_7_6 +DEBUG:snowflake.connector.result_set:result batch 73 has id: data_0_7_7 +DEBUG:snowflake.connector.result_set:result batch 74 has id: data_0_7_8 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=dy9qfk%2FI87g62xCE1iBfwSD6CPA%3D HTTP/1.1" 200 27025 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=w608SVjG8HPRcqzpTmzqxkjY7Yk%3D HTTP/1.1" 200 138684 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=MoWXsIU9BwSdE385WQp%2BrN8tygQ%3D HTTP/1.1" 200 845859 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 87 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 90 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=0ZyR0SpzSNlN51e0gzHUGg4T8YE%3D HTTP/1.1" 200 260001 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=h6%2BRjnmgr4NYfed7ro8WtkEJKNY%3D HTTP/1.1" 200 491328 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=M%2BjDSlqGz0g7GjukQQYNq566JY4%3D HTTP/1.1" 200 1660034 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 176 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=lOHwI4FDrkZVfwikkDEjDIfYCbc%3D HTTP/1.1" 200 3443978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 178 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 180 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 356 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 358 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 359 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 356 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 359 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 708 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=TA4WBWxGk6ugO60Bph2r33mel%2Bs%3D HTTP/1.1" 200 6733128 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 715 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 719 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 712 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 712 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 714 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 906 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=AcrUPyQ7wj692MXjtfzdx5kUEek%3D HTTP/1.1" 200 1997319 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 905 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=vEw9lKE23%2FUFcFaHTu4coCcDtNo%3D HTTP/1.1" 200 26808 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 917 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 906 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=aFvBrt1J5tU8BRoH9FZN2vvezXA%3D HTTP/1.1" 200 136396 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 903 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=iVrneQujNwd%2BiURi0b98g25Drwk%3D HTTP/1.1" 200 255690 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 938 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 948 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 944 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 938 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 937 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 939 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=Ust6G1cJQxneQDIvnOpG2GwWUuQ%3D HTTP/1.1" 200 484051 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 583 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 91 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 89 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 176 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=%2Fb69CSYHko9l9NVDdE2hCEOydhw%3D HTTP/1.1" 200 1007203 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 176 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 177 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_7 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=elIireWi3OID1t3Df0JifipmPBs%3D HTTP/1.1" 200 1719536 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 355 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 354 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=QQ%2F%2FvdkqlImN27GSoypLmZXhML8%3D HTTP/1.1" 200 3441450 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 350 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 353 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 355 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_8 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=bammQdGIGu4TYjmBXJNNOz2m83A%3D HTTP/1.1" 200 6652773 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 706 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 710 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 705 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 713 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=JGjW47AqS3Z3HJThSHH%2B0sK56OQ%3D HTTP/1.1" 200 11235062 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 714 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 913 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=CdIAG0S6%2FcIREzShRrfHGbnhN%2BQ%3D HTTP/1.1" 200 27016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 904 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 915 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=GPRGwpBvX%2BaIfM4YgG8uDYDJpiU%3D HTTP/1.1" 200 117774 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 904 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=9U1TFIzDpOrt9NcM7p%2Fkyg6TaoU%3D HTTP/1.1" 200 233035 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 31 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 31, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1021 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=N5%2B2f8tjA0g8AR30RX%2B2PDO0K3Y%3D HTTP/1.1" 200 474327 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 53 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 53 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 53, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1018 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1019 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 367 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 91 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 91 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 91 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 181 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 180 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 180 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 360 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 360 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=7Pn3gXuHKxvNrk7tjSPoh1RsvJM%3D HTTP/1.1" 200 892721 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 360 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 361 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=N0b3Zc5r2U6i%2BL%2BwNbeElIra7ho%3D HTTP/1.1" 200 1714224 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 360 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=QusYytkHIi26PVwb%2BpQC26k6B7k%3D HTTP/1.1" 200 3456197 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 359 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 719 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 720 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 721 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 711 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 718 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=d4pzyYbq9BNin9mI%2BoAWhpgzqGE%3D HTTP/1.1" 200 13293367 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_9 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_9 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=ueiGovDIohb9cA%2FNNIj5HpqyTgM%3D HTTP/1.1" 200 8861617 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 921 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 909 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=eBML502RhmuLKuQLzGUkwF59yc0%3D HTTP/1.1" 200 6630337 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 912 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=z8DXj6NlK%2FWNH%2BoDamiL0xeynt4%3D HTTP/1.1" 200 26592 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 916 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=BGeZk9Llrjr7a11mUc1wV2Y3bZY%3D HTTP/1.1" 200 135529 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 31 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 31, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1018 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1033 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1035 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1033 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1018 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=x2qxIVL4nOkBAjpGqEztkvkYz6Y%3D HTTP/1.1" 200 256127 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 44 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 63 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 63 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 63, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1033 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 938 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 944 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 905 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 44 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 44, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 897 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 896 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 890 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 896 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 889 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 896 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 904 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 897 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 896 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 898 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 901 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 901 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 899 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 893 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 901 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 899 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 895 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 908 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 897 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 898 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 892 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 895 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 893 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 901 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 902 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 893 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 896 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 897 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 488 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_5 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 88 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 175 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 182 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_7 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=Ynbr1XM6RgkcuMuQmRju7V70G%2Bs%3D HTTP/1.1" 200 483841 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_7 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 178 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 351 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 358 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 357 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 353 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=WfaefSNzct4la%2F%2F2yf3C7APmduM%3D HTTP/1.1" 200 6689390 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 359 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=vK5IgmH%2FhYQc7XERtzB2ldSHnQU%3D HTTP/1.1" 200 1005513 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_8 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 712 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=2e8xpf2HrVCCzSZ62SgCHzJhj6E%3D HTTP/1.1" 200 3386309 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 706 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 712 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=nFq9aChK5do65tWW%2Fbc1J6K%2Fl04%3D HTTP/1.1" 200 1704083 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 713 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 709 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 707 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=w%2Bj04uJngYtUIeuBz7P43xuHMa8%3D HTTP/1.1" 200 8014141 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=HFw1gaCUZxl0NoeJclTs59xESLY%3D HTTP/1.1" 200 26588 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 904 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 917 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 885 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=yvjM0RD%2Fcbh712kpFw5s8BIW%2BM4%3D HTTP/1.1" 200 134317 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 17 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 17 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 17, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 949 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 876 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=oRC%2BQRr0FIqxlJ%2FE%2BvXijdl3Eos%3D HTTP/1.1" 200 254295 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 919 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 913 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=mXB%2B7J9kSqSQ4Nw2PIvG1jQfhlk%3D HTTP/1.1" 200 484128 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 38 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 38 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 38, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 210 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_4 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 88 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 178 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 183 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 177 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=S0DFJpySIwmpvRzx%2BZI0ouM6jJ0%3D HTTP/1.1" 200 1693136 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=8GcjVx1R4DlL%2FcslytHK1K3aLy4%3D HTTP/1.1" 200 1001684 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 359 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 356 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 356 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 358 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 347 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 41 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 42 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_8 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=n0Bep%2Bfac8UG7anUAd8g%2FNxB%2B88%3D HTTP/1.1" 200 6783557 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 42 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 706 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 711 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 712 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 719 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 714 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=9SWUY8b66Tsw9G91yU907zlZt7Q%3D HTTP/1.1" 200 5533836 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 708 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 42 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 43 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_0 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_0 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 43 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 906 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=o7v6lNCMZlHbnLIJ3jtpnqMiBwg%3D HTTP/1.1" 200 3480993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=i4nF47zfkLH%2B4b2yBxFllTRmd%2BI%3D HTTP/1.1" 200 25148 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 903 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 901 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 43 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 44 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=qEQwqnvemVEWyixsBOxW0AJ%2BIfk%3D HTTP/1.1" 200 127264 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 44 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 906 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 44 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 45 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=qIkPSVQgyIEXXfZsaCRfpXyd%2BJg%3D HTTP/1.1" 200 241738 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 27 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 45 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 913 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 45 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 46 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 46 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 27 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 27, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 922 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=A22jbUkI%2B%2BYnThSshFA1q6%2Finc0%3D HTTP/1.1" 200 456659 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 922 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 920 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 277 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 46 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 47 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 47 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 83 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 47 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 48 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 48 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 85 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 85 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 88 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 86 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 87 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 88 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 48 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 49 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 49 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 173 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 174 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 173 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 175 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 176 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 49 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 50 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 50 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 174 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 344 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 348 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=kOb1MwPldclHcM%2BDk44cHexNqOQ%3D HTTP/1.1" 200 874423 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=jMDcs10ldyJd%2FWLn3x85%2FsxVzwE%3D HTTP/1.1" 200 1710071 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 348 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 351 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 346 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 50 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 51 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_8 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=T15v%2BM6BthhwVPENPx9JpwtQ0go%3D HTTP/1.1" 200 3432970 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=99xK8%2BL6ePzk%2B15avi8HZaL8Ok8%3D HTTP/1.1" 200 6743248 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 51 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 350 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 698 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 699 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=YZWyeDfCO4Ckej5v%2B6Sn0IUJQxc%3D HTTP/1.1" 200 13164649 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 694 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 691 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 701 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 51 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 52 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_9 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 52 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 919 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=HMMhjFlS1cayNq9kuXSFRwDNY60%3D HTTP/1.1" 200 1494755 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 907 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: da8e6a64-a572-4483-9eee-5394c29c0298 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_9 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=da8e6a64-a572-4483-9eee-5394c29c0298 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 16522c58-f3f4-48a8-bef2-e8d6a6e7bbcb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 33 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=16522c58-f3f4-48a8-bef2-e8d6a6e7bbcb HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 904 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 52 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 53 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 53 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 905 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 927 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=%2FYsjJCeB33ik7GPoHXkSu%2FyYcRE%3D HTTP/1.1" 200 26316 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 888 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 897 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 901 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 53 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 54 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 54 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 33 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 33, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 915 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=b6zJh8cCuS7TgXyLQndAulyiAMg%3D HTTP/1.1" 200 136721 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 907 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 899 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 54 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 55 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 65 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=R5SFOHsQrIMmYqeYyTuxfCOHPhc%3D HTTP/1.1" 200 258794 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 55 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 65 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 65, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 880 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 872 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 55 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 56 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 56 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 883 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=MMpBSRVgIqs%2BLdS8L4mOUEJL69Q%3D HTTP/1.1" 200 489293 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 294 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 56 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 57 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 57 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 85 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 57 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 58 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 58 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 87 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:user finished consuming result batch 58 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 59 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 59 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 176 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 176 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 177 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 59 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 60 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_7 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 60 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 351 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 354 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 352 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 357 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 357 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 60 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 61 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_8 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=fF6RDIgMlIIN8qPb%2BhgeF2lh9tI%3D HTTP/1.1" 200 6714513 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=gtMV3V7U%2FVHrCPJeqROniH7K%2BrA%3D HTTP/1.1" 200 848463 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=fPhdCYLOaG2Pz3qdjeGpEbttWBk%3D HTTP/1.1" 200 1679083 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=C89ROt0jAUmVQ1UERxc2liBmJTw%3D HTTP/1.1" 200 3424012 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_8 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 61 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 707 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 710 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=R58YU%2FsdWfrEBOCu8jF3zvfD9RY%3D HTTP/1.1" 200 6675411 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 706 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 709 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 719 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 61 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 62 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_0 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=Rpx1STJBhQlRCWYkIz2nniIFZLQ%3D HTTP/1.1" 200 26577 +DEBUG:snowflake.connector.result_set:user began consuming result batch 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 708 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 907 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 909 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 62 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 63 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=xSCJaJFO4pqULNvz5OXDnmIcdMo%3D HTTP/1.1" 200 137710 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 63 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 909 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 63 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 64 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 64 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 912 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=pIk%2BN8ApPTqZckTr3XcHQzs2N6U%3D HTTP/1.1" 200 256787 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 908 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 903 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 902 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 64 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 65 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=1wEKL%2Fw1fw6bMqAmZ9ux3HLQigY%3D HTTP/1.1" 200 489340 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 65 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 181 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 65 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 66 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 66 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 85 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 66 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 67 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 67 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 91 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 67 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 68 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 68 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 174 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 175 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 68 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 69 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 69 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=wP9yrAO3%2BSPwy7Y1qovmJEfIpjk%3D HTTP/1.1" 200 1013697 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 180 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 357 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 354 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 353 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 357 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=vgQ0IjvWDbH61UO%2BCO91S%2FndFf0%3D HTTP/1.1" 200 1715487 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 357 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 69 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 70 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_8 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=p4Ib6pegRppl5bNtjfpEw6VoloQ%3D HTTP/1.1" 200 3441865 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=xVY29Ezw0vaGP7q7JiIxf832U%2Fk%3D HTTP/1.1" 200 6679445 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 70 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 716 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 710 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668100926&Signature=XjA4ZWYAheO6iXg9Hu12Bt7N8Ig%3D HTTP/1.1" 200 6273629 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 712 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 710 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 70 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 71 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 71 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 916 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 71 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 72 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 72 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 911 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 72 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 73 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 31 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 73 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 31, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 904 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 906 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 30 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 905 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 73 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 74 +DEBUG:snowflake.connector.result_set:user began consuming result batch 74 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 30 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 30, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 338 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 74 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 487.6s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 7 +DEBUG:snowflake.connector.cursor:Request id: 92880ffb-26bd-4adf-bec3-547f59ee6947 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[7], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5b49d56a-355b-4d5c-8f3e-a6f3b6bc383e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=92880ffb-26bd-4adf-bec3-547f59ee6947&request_guid=5b49d56a-355b-4d5c-8f3e-a6f3b6bc383e HTTP/1.1" 200 2279 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836ed-0502-b1d6-1a4b-0303c543359f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836ed-0502-b1d6-1a4b-0303c543359f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 40 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836ed-0502-b1d6-1a4b-0303c543359f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ae9ace5f-ac91-4f0b-a0c0-95ff4f8ac78c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836ed-0502-b1d6-1a4b-0303c543359f?request_guid=ae9ace5f-ac91-4f0b-a0c0-95ff4f8ac78c HTTP/1.1" 200 1861 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836ed-0502-b1d6-1a4b-0303c543359f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 963509de-21f7-4789-98d0-4277a27f7dd1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836ed-0502-b1d6-1a4b-0303c543359f?request_guid=963509de-21f7-4789-98d0-4277a27f7dd1 HTTP/1.1" 200 1860 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836ed-0502-b1d6-1a4b-0303c543359f'))] +DEBUG:snowflake.connector.connection:sequence counter: 8 +DEBUG:snowflake.connector.cursor:Request id: 2f9b1fa3-653f-4626-8274-9b8e14760043 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836ed-0502-b1d6-1a4b-0303c543359f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836ed-0502-b1d6-1a4b-0303c543359f'))], sequence_id=[8], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f5b06a6e-2bed-4423-a451-0519d09881ee +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2f9b1fa3-653f-4626-8274-9b8e14760043&request_guid=f5b06a6e-2bed-4423-a451-0519d09881ee HTTP/1.1" 200 2280 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836ed-0502-af26-1a4b-0303c5432607 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836ed-0502-af26-1a4b-0303c5432607 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 40 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 9 +DEBUG:snowflake.connector.cursor:Request id: 020aeb85-7c69-46aa-bab2-92680fde0051 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[9], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1e2c76ca-5f03-4f05-a0e7-e5c3affaaf30 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=020aeb85-7c69-46aa-bab2-92680fde0051&request_guid=1e2c76ca-5f03-4f05-a0e7-e5c3affaaf30 HTTP/1.1" 200 1954 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836ed-0502-b1d6-1a4b-0303c54335f3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836ed-0502-b1d6-1a4b-0303c54335f3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 20 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836ed-0502-b1d6-1a4b-0303c54335f3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a3572d95-bf2e-4ba1-b5a6-b9e40ad2b774 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836ed-0502-b1d6-1a4b-0303c54335f3?request_guid=a3572d95-bf2e-4ba1-b5a6-b9e40ad2b774 HTTP/1.1" 200 2185 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836ed-0502-b1d6-1a4b-0303c54335f3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 78a68aa5-ea7d-4c6e-947b-0cab46828ab0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836ed-0502-b1d6-1a4b-0303c54335f3?request_guid=78a68aa5-ea7d-4c6e-947b-0cab46828ab0 HTTP/1.1" 200 2187 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836ed-0502-b1d6-1a4b-0303c54335f3'))] +DEBUG:snowflake.connector.connection:sequence counter: 10 +DEBUG:snowflake.connector.cursor:Request id: 93b0c562-8a94-46ef-8e8a-1f3bbac46bfa +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836ed-0502-b1d6-1a4b-0303c54335f3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836ed-0502-b1d6-1a4b-0303c54335f3'))], sequence_id=[10], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: eff5e710-54c5-4d59-b697-9d8fbeef725a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=93b0c562-8a94-46ef-8e8a-1f3bbac46bfa&request_guid=eff5e710-54c5-4d59-b697-9d8fbeef725a HTTP/1.1" 200 1956 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836ed-0502-afee-1a4b-0303c5434153 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836ed-0502-afee-1a4b-0303c5434153 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 20 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPAPPLOG');] +DEBUG:snowflake.connector.connection:sequence counter: 11 +DEBUG:snowflake.connector.cursor:Request id: 2acbaef1-fe95-4847-a7bb-fabbceee2b69 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPAPPLOG');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPAPPLOG');], sequence_id=[11], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 55f986f3-842a-44d7-bdb6-a2c4ac587f8d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2acbaef1-fe95-4847-a7bb-fabbceee2b69&request_guid=55f986f3-842a-44d7-bdb6-a2c4ac587f8d HTTP/1.1" 200 2342 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836ed-0502-b1d6-1a4b-0303c5433687 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836ed-0502-b1d6-1a4b-0303c5433687 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836ed-0502-b1d6-1a4b-0303c5433687' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 36ca703f-8310-4495-b49c-b460e820c476 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836ed-0502-b1d6-1a4b-0303c5433687?request_guid=36ca703f-8310-4495-b49c-b460e820c476 HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836ed-0502-b1d6-1a4b-0303c5433687' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b9cc8934-6101-46a3-8576-945c073786d6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836ed-0502-b1d6-1a4b-0303c5433687?request_guid=b9cc8934-6101-46a3-8576-945c073786d6 HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836ed-0502-b1d6-1a4b-0303c5433687'))] +DEBUG:snowflake.connector.connection:sequence counter: 12 +DEBUG:snowflake.connector.cursor:Request id: cb96a797-9776-45ea-9835-3006eff907a7 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836ed-0502-b1d6-1a4b-0303c5433687'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836ed-0502-b1d6-1a4b-0303c5433687'))], sequence_id=[12], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bbb47054-8009-44a3-a597-16f77378e8e9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cb96a797-9776-45ea-9835-3006eff907a7&request_guid=bbb47054-8009-44a3-a597-16f77378e8e9 HTTP/1.1" 200 2344 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836ed-0502-af26-1a4b-0303c543264b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836ed-0502-af26-1a4b-0303c543264b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 493s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=e37cd776-568b-46f2-9022-579125b4ae78 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4fd0f4ad-83ed-4327-bbb8-f48c187ef354 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=e37cd776-568b-46f2-9022-579125b4ae78&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=4fd0f4ad-83ed-4327-bbb8-f48c187ef354 HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT LOGLEVEL,LOGTYPE,MODULEIDNODEID,ODS_AUDIT_ID,ODS_CREATE_ROW_DTM,ODS_SID,G...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 55c57641-e1d7-467b-b383-ad71cefb97dc +DEBUG:snowflake.connector.cursor:running query [SELECT LOGLEVEL,LOGTYPE,MODULEIDNODEID,ODS_AUDIT_ID,ODS_CREATE_ROW_DTM,ODS_SID,G...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT LOGLEVEL,LOGTYPE,MODULEIDNODEID,ODS_AUDIT_ID,ODS_CREATE_ROW_DTM,ODS_SID,G...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7e75c9fc-fefe-4b8d-807d-e6ed7ebfe37b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=55c57641-e1d7-467b-b383-ad71cefb97dc&request_guid=7e75c9fc-fefe-4b8d-807d-e6ed7ebfe37b HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836ed-0502-b1d6-1a4b-0303c5433797 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836ed-0502-b1d6-1a4b-0303c5433797 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=128 +INFO:snowflake.connector.cursor:Number of results in first chunk: 188 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836ed-0502-b1d6-1a4b-0303c5433797' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b43607b7-2b49-4ec2-9cc4-ebf087189a09 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836ed-0502-b1d6-1a4b-0303c5433797?request_guid=b43607b7-2b49-4ec2-9cc4-ebf087189a09 HTTP/1.1" 200 2202 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836ed-0502-b1d6-1a4b-0303c5433797' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 314774b9-6521-4631-8724-e56ed362fecb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836ed-0502-b1d6-1a4b-0303c5433797?request_guid=314774b9-6521-4631-8724-e56ed362fecb HTTP/1.1" 200 2202 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836ed-0502-b1d6-1a4b-0303c5433797'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 13e90356-0cf1-476a-900f-5a58307bb7e3 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836ed-0502-b1d6-1a4b-0303c5433797'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836ed-0502-b1d6-1a4b-0303c5433797'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e04eaea4-66a4-41d3-b2a0-e110b93a0fdd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=13e90356-0cf1-476a-900f-5a58307bb7e3&request_guid=e04eaea4-66a4-41d3-b2a0-e110b93a0fdd HTTP/1.1" 200 8718 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836ed-0502-b1d6-1a4b-0303c5433fcb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836ed-0502-b1d6-1a4b-0303c5433fcb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=129 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_0_7 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_0_8 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_0_9 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_0_10 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_0_11 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_0_12 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_0_13 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_0_14 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_0_15 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_1_7 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_1_8 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_1_9 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_1_10 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_1_11 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_1_12 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_1_13 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_1_14 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_1_15 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_2_3 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_2_4 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_2_5 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_2_6 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_2_7 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_2_8 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_2_9 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_2_10 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_2_11 +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_2_12 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_2_13 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_2_14 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_2_15 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_3_0 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_3_4 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_3_5 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_3_6 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_3_7 +DEBUG:snowflake.connector.result_set:result batch 57 has id: data_0_3_8 +DEBUG:snowflake.connector.result_set:result batch 58 has id: data_0_3_9 +DEBUG:snowflake.connector.result_set:result batch 59 has id: data_0_3_10 +DEBUG:snowflake.connector.result_set:result batch 60 has id: data_0_3_11 +DEBUG:snowflake.connector.result_set:result batch 61 has id: data_0_3_12 +DEBUG:snowflake.connector.result_set:result batch 62 has id: data_0_3_13 +DEBUG:snowflake.connector.result_set:result batch 63 has id: data_0_3_14 +DEBUG:snowflake.connector.result_set:result batch 64 has id: data_0_3_15 +DEBUG:snowflake.connector.result_set:result batch 65 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 66 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 67 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 68 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 69 has id: data_0_4_4 +DEBUG:snowflake.connector.result_set:result batch 70 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 71 has id: data_0_4_6 +DEBUG:snowflake.connector.result_set:result batch 72 has id: data_0_4_7 +DEBUG:snowflake.connector.result_set:result batch 73 has id: data_0_4_8 +DEBUG:snowflake.connector.result_set:result batch 74 has id: data_0_4_9 +DEBUG:snowflake.connector.result_set:result batch 75 has id: data_0_4_10 +DEBUG:snowflake.connector.result_set:result batch 76 has id: data_0_4_11 +DEBUG:snowflake.connector.result_set:result batch 77 has id: data_0_4_12 +DEBUG:snowflake.connector.result_set:result batch 78 has id: data_0_4_13 +DEBUG:snowflake.connector.result_set:result batch 79 has id: data_0_4_14 +DEBUG:snowflake.connector.result_set:result batch 80 has id: data_0_4_15 +DEBUG:snowflake.connector.result_set:result batch 81 has id: data_0_5_0 +DEBUG:snowflake.connector.result_set:result batch 82 has id: data_0_5_1 +DEBUG:snowflake.connector.result_set:result batch 83 has id: data_0_5_2 +DEBUG:snowflake.connector.result_set:result batch 84 has id: data_0_5_3 +DEBUG:snowflake.connector.result_set:result batch 85 has id: data_0_5_4 +DEBUG:snowflake.connector.result_set:result batch 86 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 87 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 88 has id: data_0_5_7 +DEBUG:snowflake.connector.result_set:result batch 89 has id: data_0_5_8 +DEBUG:snowflake.connector.result_set:result batch 90 has id: data_0_5_9 +DEBUG:snowflake.connector.result_set:result batch 91 has id: data_0_5_10 +DEBUG:snowflake.connector.result_set:result batch 92 has id: data_0_5_11 +DEBUG:snowflake.connector.result_set:result batch 93 has id: data_0_5_12 +DEBUG:snowflake.connector.result_set:result batch 94 has id: data_0_5_13 +DEBUG:snowflake.connector.result_set:result batch 95 has id: data_0_5_14 +DEBUG:snowflake.connector.result_set:result batch 96 has id: data_0_5_15 +DEBUG:snowflake.connector.result_set:result batch 97 has id: data_0_6_0 +DEBUG:snowflake.connector.result_set:result batch 98 has id: data_0_6_1 +DEBUG:snowflake.connector.result_set:result batch 99 has id: data_0_6_2 +DEBUG:snowflake.connector.result_set:result batch 100 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 101 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 102 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 103 has id: data_0_6_6 +DEBUG:snowflake.connector.result_set:result batch 104 has id: data_0_6_7 +DEBUG:snowflake.connector.result_set:result batch 105 has id: data_0_6_8 +DEBUG:snowflake.connector.result_set:result batch 106 has id: data_0_6_9 +DEBUG:snowflake.connector.result_set:result batch 107 has id: data_0_6_10 +DEBUG:snowflake.connector.result_set:result batch 108 has id: data_0_6_11 +DEBUG:snowflake.connector.result_set:result batch 109 has id: data_0_6_12 +DEBUG:snowflake.connector.result_set:result batch 110 has id: data_0_6_13 +DEBUG:snowflake.connector.result_set:result batch 111 has id: data_0_6_14 +DEBUG:snowflake.connector.result_set:result batch 112 has id: data_0_6_15 +DEBUG:snowflake.connector.result_set:result batch 113 has id: data_0_6_16 +DEBUG:snowflake.connector.result_set:result batch 114 has id: data_0_7_0 +DEBUG:snowflake.connector.result_set:result batch 115 has id: data_0_7_1 +DEBUG:snowflake.connector.result_set:result batch 116 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 117 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 118 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 119 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 120 has id: data_0_7_6 +DEBUG:snowflake.connector.result_set:result batch 121 has id: data_0_7_7 +DEBUG:snowflake.connector.result_set:result batch 122 has id: data_0_7_8 +DEBUG:snowflake.connector.result_set:result batch 123 has id: data_0_7_9 +DEBUG:snowflake.connector.result_set:result batch 124 has id: data_0_7_10 +DEBUG:snowflake.connector.result_set:result batch 125 has id: data_0_7_11 +DEBUG:snowflake.connector.result_set:result batch 126 has id: data_0_7_12 +DEBUG:snowflake.connector.result_set:result batch 127 has id: data_0_7_13 +DEBUG:snowflake.connector.result_set:result batch 128 has id: data_0_7_14 +DEBUG:snowflake.connector.result_set:result batch 129 has id: data_0_7_15 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=o6D9Ioqfzepnuktdm9T72oJEJNQ%3D HTTP/1.1" 200 498345 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=e8NDRaVs1Lh%2BVv%2FN0Y5O%2Bm2NhyQ%3D HTTP/1.1" 200 243607 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=AIkYJgjzeRe4ITfREnFAmrAytuY%3D HTTP/1.1" 200 34254 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=eh6V3Au9%2F7X78JkbnYLbEpt0mvo%3D HTTP/1.1" 200 127754 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 188 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 188 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 181 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 195 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=bN%2Bgto2xImSdgEufxLuul63YERU%3D HTTP/1.1" 200 840341 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 183 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 188 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 175 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 188 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=dlvE%2Fhg4PPN%2FVp0vL7xQ2nz5Res%3D HTTP/1.1" 200 1855115 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 190 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 379 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 365 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=JRUxPGSh2zg5YsHOjLuQZTW5d88%3D HTTP/1.1" 200 3446494 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 364 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 372 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 364 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 757 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 729 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=zrboiq3zMB0GMmEM3IArqTTl3%2F0%3D HTTP/1.1" 200 6623816 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 736 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_8 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 742 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 722 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1479 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=dpGUeOvaRRxSrk4hP1HLRuuvbF0%3D HTTP/1.1" 200 13155347 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1439 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1491 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_9 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1920 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=IlrLRh90btJ4TmuCrGNZUd2ydbA%3D HTTP/1.1" 200 16877478 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1867 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1881 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 13 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_10 +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 13 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_10 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 13, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1899 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_10?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=QiuZcoXRuhJ979Qx5iLSoH%2BRsqQ%3D HTTP/1.1" 200 16904215 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1888 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_11 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 25 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_11 +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 25 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_11 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 25, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1933 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_11?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=k8kDNHZVzaPTzSM9KL0k8IsBqww%3D HTTP/1.1" 200 16929754 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1938 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1861 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1900 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 50 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 50 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 50, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1924 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_12 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1876 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_12?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=VWzmgr036%2BvgYCw6seIum6fkwNY%3D HTTP/1.1" 200 17046195 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1860 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1865 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1854 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1855 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1889 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_10 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_13 with existing session +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1907 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_10 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1892 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1928 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1898 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1892 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1888 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1896 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1846 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1870 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1902 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1876 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1853 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1891 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1964 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1991 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1974 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1962 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_13?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=iMi52BlnvnNPmHUmExiahRXk47A%3D HTTP/1.1" 200 16824648 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1946 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1970 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_14 +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_14 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_14 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1984 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1972 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2000 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1963 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1989 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1943 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1972 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_11 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_11 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1988 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 66 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_11 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1967 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1956 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1991 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1974 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1940 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1958 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1976 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1973 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1959 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1962 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1948 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_14?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=o6x8AnqYNi5gyPXX06CEL4hUAbw%3D HTTP/1.1" 200 16915799 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 2025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 2017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1981 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_15 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_15 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_15 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 66 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 66, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1990 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2002 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1957 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1993 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2020 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1954 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1994 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1978 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1989 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1974 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1880 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1882 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1944 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1892 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1885 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1888 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1889 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1977 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_15?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=tvUrk%2FFaT%2FJLC5n2DAtebet914Y%3D HTTP/1.1" 200 4594129 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 2063 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 2053 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 2058 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 2050 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 2065 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 2053 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 2052 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 2052 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 2062 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 2068 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 2055 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 2048 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 2075 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 2057 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 2057 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 2066 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 2059 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 2042 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 2066 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 2062 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 2062 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 2050 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 2055 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 2061 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1867 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 1929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 65, rows in current batch: 1917 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_15 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_15 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 23 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_15 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=ggvUj%2FTpxgXXzbxAf%2BNTKPgeMF0%3D HTTP/1.1" 200 24234 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_12 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 66 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 66 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 66, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 2019 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 65, rows in current batch: 2002 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_13 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_13 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_13 +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2007 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1990 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2004 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2018 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2002 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2013 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1992 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2005 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 2010 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1997 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1996 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 2012 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 2019 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1992 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 2002 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_14 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 2036 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 67 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 2017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1990 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=6FYNXNNSu8AMwYo5gjtHD6nsNzM%3D HTTP/1.1" 200 128221 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 2018 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 2002 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1988 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1969 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 67 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 67, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=dWEmw0x1fXqsdctGU42jY8zF9bY%3D HTTP/1.1" 200 241861 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1938 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 2063 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 2018 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 65, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 66, rows in current batch: 1944 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 23 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 23, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1966 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1946 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1945 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1997 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2018 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1972 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2019 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1918 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2013 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2002 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1991 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1912 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1882 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1930 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 2025 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 2003 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 2011 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1891 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 2056 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 2032 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1143 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=YFfBNKz4A9axGS6QJxE2cekByWo%3D HTTP/1.1" 200 501647 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 176 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 189 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 183 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 181 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 180 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 381 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 355 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 352 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 365 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 379 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 376 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_7 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 370 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 368 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 365 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 738 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 755 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 719 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 721 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 747 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=7oxVhfHWF5cXjC0R0lqkTyKBmZA%3D HTTP/1.1" 200 6582442 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=S36rqygcHkNsnnwRGNYuVHRN1OY%3D HTTP/1.1" 200 1814936 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=PycI5ZCVSl%2FhXNDVkDV%2BP1laxrY%3D HTTP/1.1" 200 3373521 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=FbKf3vkxQps5FLdhzjdDCt%2BoS6w%3D HTTP/1.1" 200 879963 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 25 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_8 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1471 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=eMWnnLMMR%2Blw7UI3axPe3LBrMhs%3D HTTP/1.1" 200 13365118 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1463 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1471 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1461 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1507 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1469 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_9 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2014 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=IlzU%2BEaHzIRBnpVOELb4VG4R2Cs%3D HTTP/1.1" 200 16958113 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2015 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2008 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_10 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_10 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_10?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=6c%2B3PAE%2FWF4P0ezRjyZqyPJmx08%3D HTTP/1.1" 200 16899752 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 13 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 13, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2036 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2018 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 2031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 2033 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 2014 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_11 +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_11 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 25 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 25, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_11 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2043 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2034 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_11?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=%2Bb09tlQqxz5odcajQGP%2BG3vlEjQ%3D HTTP/1.1" 200 16873188 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1867 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1842 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 50 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 50 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_12 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 50, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1894 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1860 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1901 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1880 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1875 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1881 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1867 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1870 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1883 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1876 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1899 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1913 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1887 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1897 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1902 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1877 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1898 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1894 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1937 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1965 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_12?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=W0gXUFldRlY6wP0e60Rj35amb4c%3D HTTP/1.1" 200 17067252 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1862 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1880 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 64 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_9 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_11 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_13 +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_11 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 64 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_13 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 64, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1883 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1902 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1883 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1884 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1912 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1899 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1880 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1914 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1913 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1883 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1876 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1895 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1932 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1898 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1871 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1930 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1960 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1950 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_13?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=s2sBEjyiB3OEwGBSg7tnFpGQcSQ%3D HTTP/1.1" 200 16815155 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1864 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1844 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1913 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_14 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_14 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1906 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_14 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1855 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1877 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1881 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1872 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1931 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1983 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1970 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1981 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 2004 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1981 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1995 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1998 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1930 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1977 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1982 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1971 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_14?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=50zpotLHpe7FTGaBQjBBJ0rMSGA%3D HTTP/1.1" 200 16995666 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1948 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1946 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1958 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_15 +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_15 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_15 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1947 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1980 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1946 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1942 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1970 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1945 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1962 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1945 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1948 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1936 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1976 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1952 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1948 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1981 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1980 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1954 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1942 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1974 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1931 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1933 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1988 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_15?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=D6FKK2hg2aar4FnSLAJND0mtEsU%3D HTTP/1.1" 200 758603 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1959 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_15 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_15 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1946 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 2013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1989 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=50yHqPNTUWUW%2F5PRWl4we7g4ccA%3D HTTP/1.1" 200 35020 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_12 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 2021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 2024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 2009 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1951 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1937 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1921 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1908 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_13 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_13 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_13 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1937 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1903 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1912 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1895 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1930 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1896 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1897 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1918 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1897 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1902 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1915 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1905 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1863 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1932 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1921 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1922 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1940 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1976 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1976 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 2015 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1981 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=N8H0EmfOkHPQSkIcZ5aGjkT1Q8U%3D HTTP/1.1" 200 132415 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1978 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 2038 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 2014 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 2020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 2006 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_14 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_14 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 70 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 2003 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 70 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 70, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1967 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1970 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1991 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1972 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1990 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1978 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1994 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1993 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1987 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.network:Request guid: fd66b80b-e5a9-4392-8621-756640899d93 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=xaqpNe3TJP5wpn7TBndDOqFDSZQ%3D HTTP/1.1" 200 253712 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=fd66b80b-e5a9-4392-8621-756640899d93 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 2027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 2009 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 2015 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 2058 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1937 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1946 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 2047 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 2031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 2092 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1857 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 2059 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 65, rows in current batch: 1845 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 66, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 67, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 68, rows in current batch: 2068 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 69, rows in current batch: 1953 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1946 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2058 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1318 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 190 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 200 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 188 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 192 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 194 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 195 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 201 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 191 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 195 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 392 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 380 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_7 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=Y1A6grxg3hAJuMVFrLd1uSLzVTQ%3D HTTP/1.1" 200 521911 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_7 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 386 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 385 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=GCQNg8pGziOCi%2BmzBkhPXG4YTB4%3D HTTP/1.1" 200 6768880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 396 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 775 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 782 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 769 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_8 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=18F7e9pCa0%2F3MBvouyNzZ4C2CVI%3D HTTP/1.1" 200 882532 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=dRRVlyusdwlqRaVk%2BQzOHiMrHWE%3D HTTP/1.1" 200 1812570 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=45GcK%2FgXHR9r8bppvGs9%2Bayiwzk%3D HTTP/1.1" 200 3306241 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 777 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 792 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1533 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1529 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=NdcYuq%2FjnuzHki3RCFeUN%2Fti%2Fxs%3D HTTP/1.1" 200 13199005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1543 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_9 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1558 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1561 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1985 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=v%2BHo0YAKZPyp1N%2BriVt%2BER9sEJg%3D HTTP/1.1" 200 16840296 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 25 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_10 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_10?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=1Fnx4VhhRrS3r8KM4HPP%2FgcFMMk%3D HTTP/1.1" 200 16913712 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 12 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 12 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 12, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1994 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_11 +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 25 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 25, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1976 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_11 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_11 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2003 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_11?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=wMlSPgsw1qprmPmt3O71b0kWKaM%3D HTTP/1.1" 200 16895419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1864 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1852 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1860 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1838 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1843 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 49 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 49 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_12 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 49, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1857 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1877 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_12?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101159&Signature=sj21vgEzjuAallwKPobaDbvUcEY%3D HTTP/1.1" 200 16793147 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1852 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1855 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1892 +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 4.806s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 4.812s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 4.818s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=ea9ab1fc-f100-4976-8ca3-08bab78fd6a8 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1df4498a-150d-4cd5-b673-4afa666e9e9e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:33:56] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:33:56] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +DEBUG:filelock:Attempting to acquire lock 1644106656080 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1644106656080 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1644107072800 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1644107072800 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:33:56] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:33:56] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +DEBUG:filelock:Attempting to acquire lock 1644107072800 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1644107072800 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1644106656080 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1644106656080 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=ea9ab1fc-f100-4976-8ca3-08bab78fd6a8&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=1df4498a-150d-4cd5-b673-4afa666e9e9e HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=3558bc82-010a-4f74-ad9e-4846cbd19120 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: aa3e4365-3910-4d28-8d68-929e2abfae6d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:33:59] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +DEBUG:snowflake.connector.ocsp_snowflake:ok +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:33:59] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=3558bc82-010a-4f74-ad9e-4846cbd19120&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=aa3e4365-3910-4d28-8d68-929e2abfae6d HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00478s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 1525de4c-e6be-467c-9d33-180b8679d9f9 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f500c65d-3b41-47a8-845b-372803f2976f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1525de4c-e6be-467c-9d33-180b8679d9f9&request_guid=f500c65d-3b41-47a8-845b-372803f2976f HTTP/1.1" 200 2767 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836f6-0502-afee-1a4b-0303c5452bb7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836f6-0502-afee-1a4b-0303c5452bb7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836f6-0502-afee-1a4b-0303c5452bb7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7d2b81f3-2d05-4afa-9027-1feaacf258d3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836f6-0502-afee-1a4b-0303c5452bb7?request_guid=7d2b81f3-2d05-4afa-9027-1feaacf258d3 HTTP/1.1" 200 1853 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836f6-0502-afee-1a4b-0303c5452bb7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d83b4e94-3cac-4bcf-a61d-b0ace2bf3738 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836f6-0502-afee-1a4b-0303c5452bb7?request_guid=d83b4e94-3cac-4bcf-a61d-b0ace2bf3738 HTTP/1.1" 200 1853 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836f6-0502-afee-1a4b-0303c5452bb7'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: e22fef0e-37ad-4b52-be90-cc8efe2af9dc +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836f6-0502-afee-1a4b-0303c5452bb7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836f6-0502-afee-1a4b-0303c5452bb7'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 28b22a4e-17b4-4e13-ab7b-4875895c1c33 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e22fef0e-37ad-4b52-be90-cc8efe2af9dc&request_guid=28b22a4e-17b4-4e13-ab7b-4875895c1c33 HTTP/1.1" 200 2767 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836f6-0502-afee-1a4b-0303c5452c03 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836f6-0502-afee-1a4b-0303c5452c03 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 773f532e-2d2b-4b9e-a360-50980643669c +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2dabad9d-a463-479e-adf4-69b8f44d4eb5 +DEBUG:snowflake.connector.network:socket timeout: 60 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:34:02] "POST /submit HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:34:02] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:34:02] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:34:02] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=773f532e-2d2b-4b9e-a360-50980643669c&request_guid=2dabad9d-a463-479e-adf4-69b8f44d4eb5 HTTP/1.1" 200 2505 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836f6-0502-b0de-1a4b-0303c545386f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836f6-0502-b0de-1a4b-0303c545386f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836f6-0502-b0de-1a4b-0303c545386f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 335732a1-81a4-49d2-8d63-32df31cf6344 +DEBUG:snowflake.connector.network:socket timeout: 60 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:34:02] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:34:02] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836f6-0502-b0de-1a4b-0303c545386f?request_guid=335732a1-81a4-49d2-8d63-32df31cf6344 HTTP/1.1" 200 2172 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836f6-0502-b0de-1a4b-0303c545386f' +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:34:02] "GET /static/css/style.css HTTP/1.1" 304 - +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 710b0318-9960-438f-87ec-da0c17eaee62 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836f6-0502-b0de-1a4b-0303c545386f?request_guid=710b0318-9960-438f-87ec-da0c17eaee62 HTTP/1.1" 200 2173 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836f6-0502-b0de-1a4b-0303c545386f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 02d356da-9221-48c3-8a2b-252184a06627 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836f6-0502-b0de-1a4b-0303c545386f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836f6-0502-b0de-1a4b-0303c545386f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: df1be6cd-dbb3-47a8-9796-7cb51391a0d5 +DEBUG:snowflake.connector.network:socket timeout: 60 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:34:02] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:34:02] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=02d356da-9221-48c3-8a2b-252184a06627&request_guid=df1be6cd-dbb3-47a8-9796-7cb51391a0d5 HTTP/1.1" 200 2511 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836f6-0502-afee-1a4b-0303c5452c47 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836f6-0502-afee-1a4b-0303c5452c47 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: e632a237-3bdd-42fd-ad79-126f401b699c +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:34:02] "GET /mail/contact.js HTTP/1.1" 404 - +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 37209210-1da9-4aad-a4be-b214a94c5430 +DEBUG:snowflake.connector.network:socket timeout: 60 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:34:02] "GET /js/main.js HTTP/1.1" 404 - +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e632a237-3bdd-42fd-ad79-126f401b699c&request_guid=37209210-1da9-4aad-a4be-b214a94c5430 HTTP/1.1" 200 2810 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836f6-0502-b0de-1a4b-0303c54538b3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836f6-0502-b0de-1a4b-0303c54538b3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836f6-0502-b0de-1a4b-0303c54538b3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4e45e9c2-5979-41de-96da-533ef6ec8249 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836f6-0502-b0de-1a4b-0303c54538b3?request_guid=4e45e9c2-5979-41de-96da-533ef6ec8249 HTTP/1.1" 200 1675 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836f6-0502-b0de-1a4b-0303c54538b3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a54ac250-cc69-4e78-b0b6-bf2501692a38 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836f6-0502-b0de-1a4b-0303c54538b3?request_guid=a54ac250-cc69-4e78-b0b6-bf2501692a38 HTTP/1.1" 200 1677 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836f6-0502-b0de-1a4b-0303c54538b3'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 3fe9dbaf-016f-46d7-bfb4-51acba305cc6 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836f6-0502-b0de-1a4b-0303c54538b3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836f6-0502-b0de-1a4b-0303c54538b3'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fe701536-e7c6-4e52-aed9-32545d4f4119 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3fe9dbaf-016f-46d7-bfb4-51acba305cc6&request_guid=fe701536-e7c6-4e52-aed9-32545d4f4119 HTTP/1.1" 200 2815 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836f6-0502-afee-1a4b-0303c5452c5f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836f6-0502-afee-1a4b-0303c5452c5f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 3.581s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=f9746753-1aa3-4fdf-b750-e0019744721f +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fb6155db-c4f5-41b4-9081-6c62b127a53e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=f9746753-1aa3-4fdf-b750-e0019744721f&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=fb6155db-c4f5-41b4-9081-6c62b127a53e HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT AVERAGERECCONF,LATENCYHISTOGRAM1,ODS_ROW_PROCESS_DTM,PARENTID,ODS_EXP_ROW...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: b56d17dc-331a-43ff-97db-6902af177095 +DEBUG:snowflake.connector.cursor:running query [SELECT AVERAGERECCONF,LATENCYHISTOGRAM1,ODS_ROW_PROCESS_DTM,PARENTID,ODS_EXP_ROW...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT AVERAGERECCONF,LATENCYHISTOGRAM1,ODS_ROW_PROCESS_DTM,PARENTID,ODS_EXP_ROW...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9f812a82-ebbc-47a6-8fe5-1b459b2291c8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b56d17dc-331a-43ff-97db-6902af177095&request_guid=9f812a82-ebbc-47a6-8fe5-1b459b2291c8 HTTP/1.1" 200 6507 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836f6-0502-afee-1a4b-0303c5452c87 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836f6-0502-afee-1a4b-0303c5452c87 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=74 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836f6-0502-afee-1a4b-0303c5452c87' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 38fc9f80-2289-4adc-a2fe-baaada8d1ea8 +DEBUG:snowflake.connector.network:socket timeout: 60 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 14.09s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 14.1s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 14.1s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=ddb66637-ee1b-44a9-98f3-eb2508f56685 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d9424e88-d3f3-4d58-a278-4c84358d0749 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836f6-0502-afee-1a4b-0303c5452c87?request_guid=38fc9f80-2289-4adc-a2fe-baaada8d1ea8 HTTP/1.1" 200 2275 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836f6-0502-afee-1a4b-0303c5452c87' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: deece7d5-c88a-4945-8713-6e57d05a1dc5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836f6-0502-afee-1a4b-0303c5452c87?request_guid=deece7d5-c88a-4945-8713-6e57d05a1dc5 HTTP/1.1" 200 2276 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836f6-0502-afee-1a4b-0303c5452c87'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 9d72a16e-722b-400b-973c-5fa8c1a1c69f +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836f6-0502-afee-1a4b-0303c5452c87'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836f6-0502-afee-1a4b-0303c5452c87'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cc25fb87-f1d0-4b01-a5e0-fb4a6a1a1104 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=9d72a16e-722b-400b-973c-5fa8c1a1c69f&request_guid=cc25fb87-f1d0-4b01-a5e0-fb4a6a1a1104 HTTP/1.1" 200 6506 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836f6-0502-b0de-1a4b-0303c5453927 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836f6-0502-b0de-1a4b-0303c5453927 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=74 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_0_7 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_0_8 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_1_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_1_7 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_1_8 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_2_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_2_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_2_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_2_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_2_7 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_2_8 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_2_9 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_3_0 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_3_4 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_3_5 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_3_6 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_3_7 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_3_8 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_4_4 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_4_6 +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_4_7 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_4_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_5_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_5_1 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_5_2 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_5_3 +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_5_4 +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_5_7 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_5_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_5_9 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:result batch 57 has id: data_0_6_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_set:result batch 58 has id: data_0_6_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_set:result batch 59 has id: data_0_6_2 +DEBUG:snowflake.connector.result_set:result batch 60 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 61 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 62 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 63 has id: data_0_6_6 +DEBUG:snowflake.connector.result_set:result batch 64 has id: data_0_6_7 +DEBUG:snowflake.connector.result_set:result batch 65 has id: data_0_6_8 +DEBUG:snowflake.connector.result_set:result batch 66 has id: data_0_7_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:result batch 67 has id: data_0_7_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:result batch 68 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 69 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 70 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 71 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 72 has id: data_0_7_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:result batch 73 has id: data_0_7_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:result batch 74 has id: data_0_7_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=ddb66637-ee1b-44a9-98f3-eb2508f56685&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=d9424e88-d3f3-4d58-a278-4c84358d0749 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=b17720ae-75d7-45d8-858d-46d18ef70bd7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: da06ef1c-323f-4097-9172-ee897a11ae76 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=Ngq2Co77DZZ4ouyLJ7FAumQGqAY%3D HTTP/1.1" 200 27025 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=0uXeAikLy26jZCF9mGyrlxyvUZ4%3D HTTP/1.1" 200 138684 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=a52mL5T0U5OkGVRZ%2F%2Bfb2%2F9EgQI%3D HTTP/1.1" 200 845859 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=lVAM79nRmOJmqar9aUeG9MvBJcs%3D HTTP/1.1" 200 491328 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 87 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 90 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=JTCFzoDZkjz59dlRKwhxcnUEWNM%3D HTTP/1.1" 200 1660034 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=tAWqtL7bjftTB5vgqSWbdpWz4UA%3D HTTP/1.1" 200 260001 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=RGbcDrK9cTwiHmciykvHzyfqmH4%3D HTTP/1.1" 200 3443978 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 90 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 176 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 178 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 180 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_7 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 179 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 356 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 358 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 359 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 356 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=7hjCZQHx4W5yXPTJRCVk9FVf%2FN8%3D HTTP/1.1" 200 6733128 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 359 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_8 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 708 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 715 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 719 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 712 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 712 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=D8chPU61sHHE01PDbArDRsSP%2BfQ%3D HTTP/1.1" 200 1997319 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 907 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=qohEBeLwSQfTAY%2FHO98ekHxsIyg%3D HTTP/1.1" 200 26808 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=b17720ae-75d7-45d8-858d-46d18ef70bd7&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=da06ef1c-323f-4097-9172-ee897a11ae76 HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 896 +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 903 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 906 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +INFO:sqlalchemy.engine.Engine:[cached since 14.83s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.cursor:Request id: b3d7de16-0aa7-4da1-b8bb-b5111719ea73 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d5f55fbd-011d-43f7-8211-74d9c59a5224 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_8 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=ykGYnV7Dx9SfO1WuOHbwfqs4pAE%3D HTTP/1.1" 200 136396 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 910 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b3d7de16-0aa7-4da1-b8bb-b5111719ea73&request_guid=d5f55fbd-011d-43f7-8211-74d9c59a5224 HTTP/1.1" 200 2278 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836f6-0502-b1d6-1a4b-0303c54540f7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836f6-0502-b1d6-1a4b-0303c54540f7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 40 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 909 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836f6-0502-b1d6-1a4b-0303c54540f7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 549fdf1f-812e-4d19-a4e1-8abeddad5cf6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 903 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836f6-0502-b1d6-1a4b-0303c54540f7?request_guid=549fdf1f-812e-4d19-a4e1-8abeddad5cf6 HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836f6-0502-b1d6-1a4b-0303c54540f7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ddfe115d-7633-472a-b194-5076c53f23d3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=Uy5gvHTkG%2BIL2Q2DmEkCHhz1zzs%3D HTTP/1.1" 200 255690 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836f6-0502-b1d6-1a4b-0303c54540f7?request_guid=ddfe115d-7633-472a-b194-5076c53f23d3 HTTP/1.1" 200 1853 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836f6-0502-b1d6-1a4b-0303c54540f7'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 69700cad-25d5-4fed-9a7c-b4348c4b6615 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836f6-0502-b1d6-1a4b-0303c54540f7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836f6-0502-b1d6-1a4b-0303c54540f7'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f9973d27-69ac-41d4-b29f-081857de8100 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 907 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=69700cad-25d5-4fed-9a7c-b4348c4b6615&request_guid=f9973d27-69ac-41d4-b29f-081857de8100 HTTP/1.1" 200 2280 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 911 +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836f6-0502-af26-1a4b-0303c5455083 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836f6-0502-af26-1a4b-0303c5455083 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 939 +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 40 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: cd27e5d9-94bf-41e9-8c0b-b1ab468841cd +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 52f7c872-f432-4118-a94b-cade6a12cb7c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 938 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 933 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cd27e5d9-94bf-41e9-8c0b-b1ab468841cd&request_guid=52f7c872-f432-4118-a94b-cade6a12cb7c HTTP/1.1" 200 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 943 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 941 +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836f6-0502-b0de-1a4b-0303c5453a8f +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 941 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836f6-0502-b0de-1a4b-0303c5453a8f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 948 +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 20 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836f6-0502-b0de-1a4b-0303c5453a8f' +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 941 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 27db150d-353c-4790-8a21-328a75427462 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 944 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836f6-0502-b0de-1a4b-0303c5453a8f?request_guid=27db150d-353c-4790-8a21-328a75427462 HTTP/1.1" 200 2173 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836f6-0502-b0de-1a4b-0303c5453a8f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 941 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fe5fb357-17fb-433f-8ee7-6ccd85589663 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 935 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836f6-0502-b0de-1a4b-0303c5453a8f?request_guid=fe5fb357-17fb-433f-8ee7-6ccd85589663 HTTP/1.1" 200 2174 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 943 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836f6-0502-b0de-1a4b-0303c5453a8f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 48663bdf-ec76-48f5-81f9-8d93d890ae75 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836f6-0502-b0de-1a4b-0303c5453a8f'))] +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 943 +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836f6-0502-b0de-1a4b-0303c5453a8f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 07e00eae-4279-42eb-8f91-7ec39ebbad71 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 938 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=48663bdf-ec76-48f5-81f9-8d93d890ae75&request_guid=07e00eae-4279-42eb-8f91-7ec39ebbad71 HTTP/1.1" 200 1958 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Query id: 01a836f6-0502-afee-1a4b-0303c5452ebf +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 937 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836f6-0502-afee-1a4b-0303c5452ebf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 20 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 939 +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPAPPLOG');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: b820b5d9-0fca-41e0-b5c4-aef08ccefc7b +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPAPPLOG');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPAPPLOG');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 939 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 693e7fab-1690-4ba3-b161-dbb9e6b6bffa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=k1o4RTyPYCCS803rIXpfbh2WIxE%3D HTTP/1.1" 200 484051 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 934 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b820b5d9-0fca-41e0-b5c4-aef08ccefc7b&request_guid=693e7fab-1690-4ba3-b161-dbb9e6b6bffa HTTP/1.1" 200 2343 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 922 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836f6-0502-b0de-1a4b-0303c5453ad7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 907 +DEBUG:snowflake.connector.cursor:sfqid: 01a836f6-0502-b0de-1a4b-0303c5453ad7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836f6-0502-b0de-1a4b-0303c5453ad7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 936 +DEBUG:snowflake.connector.network:Request guid: 2a19164f-adce-4b01-b6e4-7daedb66074d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 583 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836f6-0502-b0de-1a4b-0303c5453ad7?request_guid=2a19164f-adce-4b01-b6e4-7daedb66074d HTTP/1.1" 200 1676 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 88 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 90 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 91 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836f6-0502-b0de-1a4b-0303c5453ad7' +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 89 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.network:Request guid: 39be3967-1234-4601-8bbe-52a81f01751a +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 176 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 176 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_7 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=nXaS%2B%2BW9cCeNOPQJZ0e4qnoNEWs%3D HTTP/1.1" 200 1007203 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=bcQQCLNIGVA2xcOb%2F9iFogI19pA%3D HTTP/1.1" 200 1719536 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 177 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836f6-0502-b0de-1a4b-0303c5453ad7?request_guid=39be3967-1234-4601-8bbe-52a81f01751a HTTP/1.1" 200 1675 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 355 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 354 +DEBUG:snowflake.connector.cursor:executing SQL/command +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 350 +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836f6-0502-b0de-1a4b-0303c5453ad7'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: f62af744-4f50-4309-be62-1447158421fe +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836f6-0502-b0de-1a4b-0303c5453ad7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 353 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=Otw%2Bmmp8yNCCjv4sz7zUR4njLCo%3D HTTP/1.1" 200 3441450 +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 355 +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836f6-0502-b0de-1a4b-0303c5453ad7'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_8 +DEBUG:snowflake.connector.network:Request guid: d86b4b46-4e12-4a0a-9309-cfcc090eb7eb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=ULFBdgyyqHNkUhHWS9w4CqygxUg%3D HTTP/1.1" 200 6652773 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f62af744-4f50-4309-be62-1447158421fe&request_guid=d86b4b46-4e12-4a0a-9309-cfcc090eb7eb HTTP/1.1" 200 2343 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836f6-0502-b1d6-1a4b-0303c545418b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a836f6-0502-b1d6-1a4b-0303c545418b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 706 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 710 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 705 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 19.08s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=61c089cf-2286-490d-9580-3a22447c2450 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 47c07269-cbd7-4303-b380-2ce52b1b05a2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=hnFM3ZHwxlipCx4rnbjgtC5wSyY%3D HTTP/1.1" 200 11235062 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 713 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 714 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 913 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=jxeco9Jgnj9sNDqryKuoqJIOF%2BI%3D HTTP/1.1" 200 27016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 904 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 910 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 915 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=rHaDTJr75lb7lTy%2FoTWX9rhiuf4%3D HTTP/1.1" 200 117774 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 915 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=61c089cf-2286-490d-9580-3a22447c2450&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=47c07269-cbd7-4303-b380-2ce52b1b05a2 HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 910 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 906 +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 901 +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT LOGLEVEL,LOGTYPE,MODULEIDNODEID,ODS_AUDIT_ID,ODS_CREATE_ROW_DTM,ODS_SID,G...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: bbc58f86-1859-42a2-8a43-2e6446e44d3d +DEBUG:snowflake.connector.cursor:running query [SELECT LOGLEVEL,LOGTYPE,MODULEIDNODEID,ODS_AUDIT_ID,ODS_CREATE_ROW_DTM,ODS_SID,G...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT LOGLEVEL,LOGTYPE,MODULEIDNODEID,ODS_AUDIT_ID,ODS_CREATE_ROW_DTM,ODS_SID,G...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b86410c9-b097-42f9-afe4-870a5da7cd3c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 902 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=bbc58f86-1859-42a2-8a43-2e6446e44d3d&request_guid=b86410c9-b097-42f9-afe4-870a5da7cd3c HTTP/1.1" 200 8747 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 904 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836f6-0502-b1d6-1a4b-0303c54541ef +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.cursor:sfqid: 01a836f6-0502-b1d6-1a4b-0303c54541ef +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:chunk size=129 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836f6-0502-b1d6-1a4b-0303c54541ef' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d435a959-538c-4011-a99d-ea12bdd818e4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836f6-0502-b1d6-1a4b-0303c54541ef?request_guid=d435a959-538c-4011-a99d-ea12bdd818e4 HTTP/1.1" 200 2014 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a836f6-0502-b1d6-1a4b-0303c54541ef' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a5835a44-714f-4901-b36d-db7b1bbb6895 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=J4ck0hp17Gs5%2F8AbDN1rB%2B8I2kk%3D HTTP/1.1" 200 233035 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a836f6-0502-b1d6-1a4b-0303c54541ef?request_guid=a5835a44-714f-4901-b36d-db7b1bbb6895 HTTP/1.1" 200 2013 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 31 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.cursor:executing SQL/command +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 31 +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a836f6-0502-b1d6-1a4b-0303c54541ef'))] +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 31, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 912 +DEBUG:snowflake.connector.cursor:Request id: 7560457e-4017-4a2e-85c9-2bd20e614b5a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a836f6-0502-b1d6-1a4b-0303c54541ef'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a836f6-0502-b1d6-1a4b-0303c54541ef'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6541449c-7747-4760-ae92-f46a827e1967 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 914 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7560457e-4017-4a2e-85c9-2bd20e614b5a&request_guid=6541449c-7747-4760-ae92-f46a827e1967 HTTP/1.1" 200 8752 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 904 +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a836f6-0502-afee-1a4b-0303c5452fd3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 915 +DEBUG:snowflake.connector.cursor:sfqid: 01a836f6-0502-afee-1a4b-0303c5452fd3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=129 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 913 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_0_7 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_0_8 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_0_9 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_0_10 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_0_11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 912 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_0_12 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_0_13 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_0_14 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_0_15 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_1_7 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_1_8 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_1_9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 906 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_1_10 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_1_11 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_1_12 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_1_13 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_1_14 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_1_15 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_2_3 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_2_4 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_2_5 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_2_6 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_2_7 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_2_8 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_2_9 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_2_10 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_2_11 +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_2_12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 910 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_2_13 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_2_14 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_2_15 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_3_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_3_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 909 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 911 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_3_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 910 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_3_7 +DEBUG:snowflake.connector.result_set:result batch 57 has id: data_0_3_8 +DEBUG:snowflake.connector.result_set:result batch 58 has id: data_0_3_9 +DEBUG:snowflake.connector.result_set:result batch 59 has id: data_0_3_10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 914 +DEBUG:snowflake.connector.result_set:result batch 60 has id: data_0_3_11 +DEBUG:snowflake.connector.result_set:result batch 61 has id: data_0_3_12 +DEBUG:snowflake.connector.result_set:result batch 62 has id: data_0_3_13 +DEBUG:snowflake.connector.result_set:result batch 63 has id: data_0_3_14 +DEBUG:snowflake.connector.result_set:result batch 64 has id: data_0_3_15 +DEBUG:snowflake.connector.result_set:result batch 65 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 66 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 67 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 68 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 69 has id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 913 +DEBUG:snowflake.connector.result_set:result batch 70 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 71 has id: data_0_4_6 +DEBUG:snowflake.connector.result_set:result batch 72 has id: data_0_4_7 +DEBUG:snowflake.connector.result_set:result batch 73 has id: data_0_4_8 +DEBUG:snowflake.connector.result_set:result batch 74 has id: data_0_4_9 +DEBUG:snowflake.connector.result_set:result batch 75 has id: data_0_4_10 +DEBUG:snowflake.connector.result_set:result batch 76 has id: data_0_4_11 +DEBUG:snowflake.connector.result_set:result batch 77 has id: data_0_4_12 +DEBUG:snowflake.connector.result_set:result batch 78 has id: data_0_4_13 +DEBUG:snowflake.connector.result_set:result batch 79 has id: data_0_4_14 +DEBUG:snowflake.connector.result_set:result batch 80 has id: data_0_4_15 +DEBUG:snowflake.connector.result_set:result batch 81 has id: data_0_5_0 +DEBUG:snowflake.connector.result_set:result batch 82 has id: data_0_5_1 +DEBUG:snowflake.connector.result_set:result batch 83 has id: data_0_5_2 +DEBUG:snowflake.connector.result_set:result batch 84 has id: data_0_5_3 +DEBUG:snowflake.connector.result_set:result batch 85 has id: data_0_5_4 +DEBUG:snowflake.connector.result_set:result batch 86 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 87 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 88 has id: data_0_5_7 +DEBUG:snowflake.connector.result_set:result batch 89 has id: data_0_5_8 +DEBUG:snowflake.connector.result_set:result batch 90 has id: data_0_5_9 +DEBUG:snowflake.connector.result_set:result batch 91 has id: data_0_5_10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 913 +DEBUG:snowflake.connector.result_set:result batch 92 has id: data_0_5_11 +DEBUG:snowflake.connector.result_set:result batch 93 has id: data_0_5_12 +DEBUG:snowflake.connector.result_set:result batch 94 has id: data_0_5_13 +DEBUG:snowflake.connector.result_set:result batch 95 has id: data_0_5_14 +DEBUG:snowflake.connector.result_set:result batch 96 has id: data_0_5_15 +DEBUG:snowflake.connector.result_set:result batch 97 has id: data_0_6_0 +DEBUG:snowflake.connector.result_set:result batch 98 has id: data_0_6_1 +DEBUG:snowflake.connector.result_set:result batch 99 has id: data_0_6_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 902 +DEBUG:snowflake.connector.result_set:result batch 100 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 101 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 102 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 103 has id: data_0_6_6 +DEBUG:snowflake.connector.result_set:result batch 104 has id: data_0_6_7 +DEBUG:snowflake.connector.result_set:result batch 105 has id: data_0_6_8 +DEBUG:snowflake.connector.result_set:result batch 106 has id: data_0_6_9 +DEBUG:snowflake.connector.result_set:result batch 107 has id: data_0_6_10 +DEBUG:snowflake.connector.result_set:result batch 108 has id: data_0_6_11 +DEBUG:snowflake.connector.result_set:result batch 109 has id: data_0_6_12 +DEBUG:snowflake.connector.result_set:result batch 110 has id: data_0_6_13 +DEBUG:snowflake.connector.result_set:result batch 111 has id: data_0_6_14 +DEBUG:snowflake.connector.result_set:result batch 112 has id: data_0_6_15 +DEBUG:snowflake.connector.result_set:result batch 113 has id: data_0_6_16 +DEBUG:snowflake.connector.result_set:result batch 114 has id: data_0_7_0 +DEBUG:snowflake.connector.result_set:result batch 115 has id: data_0_7_1 +DEBUG:snowflake.connector.result_set:result batch 116 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 117 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 118 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 119 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 120 has id: data_0_7_6 +DEBUG:snowflake.connector.result_set:result batch 121 has id: data_0_7_7 +DEBUG:snowflake.connector.result_set:result batch 122 has id: data_0_7_8 +DEBUG:snowflake.connector.result_set:result batch 123 has id: data_0_7_9 +DEBUG:snowflake.connector.result_set:result batch 124 has id: data_0_7_10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 913 +DEBUG:snowflake.connector.result_set:result batch 125 has id: data_0_7_11 +DEBUG:snowflake.connector.result_set:result batch 126 has id: data_0_7_12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 903 +DEBUG:snowflake.connector.result_set:result batch 127 has id: data_0_7_13 +DEBUG:snowflake.connector.result_set:result batch 128 has id: data_0_7_14 +DEBUG:snowflake.connector.result_set:result batch 129 has id: data_0_7_15 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 914 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 910 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 906 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 913 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 906 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 918 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1021 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=UwQEydygcAktv41q1%2BlCrI03bkY%3D HTTP/1.1" 200 474327 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=ZMBrGmLzcBpxqJ1xWVnBHtXJkjo%3D HTTP/1.1" 200 34254 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 188 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=JSdXGZjoorU0XAHS3XtdrS5v5ps%3D HTTP/1.1" 200 127754 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 53 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=byd9nQSuHmkFQWB2pj3PM%2FQ4FWc%3D HTTP/1.1" 200 498345 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=ABfrg34SP5JCd8duC4vFNearqck%3D HTTP/1.1" 200 243607 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 53 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 53, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1021 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=HkqI61YQ1458t07VHUTHCQHdvIU%3D HTTP/1.1" 200 840341 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1023 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1026 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 188 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 181 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 195 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 183 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1024 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=hE1uGjffXu6dtEQAYDrXazl1J%2Bc%3D HTTP/1.1" 200 1855115 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1029 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1027 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1020 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 188 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 175 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 188 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 190 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 379 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 365 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=VWpza8O847Eil6n%2BQw7vYmRn1SA%3D HTTP/1.1" 200 3446494 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1023 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1024 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1025 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 364 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 372 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 364 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 757 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 729 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=hOWXdDAFZ7IxWofGWeIL%2B5hH1eU%3D HTTP/1.1" 200 6623816 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 736 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1026 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1029 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1025 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1018 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 742 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 722 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1479 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1028 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=PUMObx3x%2B5HF7BrtlSwwLV%2Fdn5g%3D HTTP/1.1" 200 13155347 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1439 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1491 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1023 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1019 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 367 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 91 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 91 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 91 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 181 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 180 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 360 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 360 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 360 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 361 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 360 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_9 +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_9 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1896 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=9bTTpverfDSVYPtfTjrTml9xP1k%3D HTTP/1.1" 200 16877478 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1891 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1920 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1884 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1879 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1867 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1881 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_10 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 13 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_10 +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 13 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_10 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 13, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1899 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1892 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_10?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=PnMou5%2Bqw%2FZ%2FZd%2BLR1QTgHMc1Cw%3D HTTP/1.1" 200 16904215 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1918 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1913 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1899 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1884 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1903 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1876 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1889 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1868 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1869 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1887 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1888 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=fzx19i%2BoTNeACejSGhiQBDQrqWg%3D HTTP/1.1" 200 3456197 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=DKnJdojtVOJRLsAJk19fKTe5XCs%3D HTTP/1.1" 200 1714224 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=VW9G0QLUzXdR%2FKl%2FZ0WpqUXbYVw%3D HTTP/1.1" 200 892721 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=q91NRSWYZ5oTub0IIqrBC9EQDvM%3D HTTP/1.1" 200 6630337 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_11 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 25 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_11 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_11 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 25 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 25, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1933 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1938 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1918 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1891 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1890 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1901 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1878 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1914 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_8 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1878 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 359 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=WluphlISVsL4LspLIl7kBmRsulE%3D HTTP/1.1" 200 13293367 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 719 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 720 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 721 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 711 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 718 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1876 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_9 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1885 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1870 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1910 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1875 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1861 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_12 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_9 +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_9 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_11?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=sJJ%2B52qPZ2HG7HCXEJo8F%2BYeoFk%3D HTTP/1.1" 200 16929754 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 910 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=qRklq%2FBRZodB1YZAVoCe8rhtZl0%3D HTTP/1.1" 200 8861617 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 909 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 917 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=yZFrst%2FRGxzZ%2BpwrVZUjH1hdweY%3D HTTP/1.1" 200 26592 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 916 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=3JGA4blguSpu6HZRED7DwURa7sg%3D HTTP/1.1" 200 135529 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 31 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 31, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1018 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1033 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1035 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1033 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1018 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 50 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=F9gWQ8mFsdFp5yamG9I8fts4keE%3D HTTP/1.1" 200 256127 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 50 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_12 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 50, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1874 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1916 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1860 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1870 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1878 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1904 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1877 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1880 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1908 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1879 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1879 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1895 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1913 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1896 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1885 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1868 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1879 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1865 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1896 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1901 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_12?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=bxFl%2FVhFcZu%2F69dJ%2FNW91zWEAf4%3D HTTP/1.1" 200 17046195 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1854 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1855 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1889 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 44 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_13 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1907 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1928 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1898 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1892 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1888 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1896 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1846 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1870 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1902 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1876 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1894 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1853 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1891 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1962 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1955 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_13?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=yTdMq7w7g6Z4pvhuKHcVx6o8PlU%3D HTTP/1.1" 200 16824648 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1974 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 63 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1984 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 63 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 63, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1946 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1970 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1033 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 938 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 944 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 905 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 44 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 44, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 897 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 901 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 903 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 900 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 897 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 890 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_10 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 896 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_10 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_14 +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 889 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_14 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 904 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 897 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 896 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 897 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1964 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 898 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 901 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 908 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 901 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 899 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2000 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1963 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 893 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1989 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 901 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1943 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 899 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 895 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 908 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1988 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 897 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1967 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 898 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 896 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 897 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1940 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 488 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1958 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1976 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_4 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1959 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1962 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_5 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1934 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_5 with existing session +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1978 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 89 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 90 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 88 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1980 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1948 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_6 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1977 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 175 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1941 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 178 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_11 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 177 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 182 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_7 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1953 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 66 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_11 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1961 +DEBUG:snowflake.connector.ocsp_snowflake:The lock directory exists. Other process may be updating the cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json.lck +DEBUG:snowflake.connector.ocsp_snowflake:Failed to locate OCSP response cache file. No worry. It will validate with OCSP server: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1947 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1989 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1980 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=nLQHfbIrgP7cR3YGsGIMn4o3RYQ%3D HTTP/1.1" 200 483841 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 2010 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_7 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 2025 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 351 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 358 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=cBz0D7mEAKImUUgdSBa4BT3L%2Fjc%3D HTTP/1.1" 200 3386309 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=89EPgIxN6tYrhV8OLu2w8DPbsWI%3D HTTP/1.1" 200 6689390 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 357 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 353 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 359 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 2001 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1990 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1993 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1973 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1985 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1977 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 2017 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1958 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1981 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_15 +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 66 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 66, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1990 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_15 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2001 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_14?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=MDcOxNI%2BXVvgQja%2B9CnUjrAJqpI%3D HTTP/1.1" 200 16915799 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1956 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2002 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1957 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1993 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2020 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1954 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1994 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1978 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1989 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1974 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1880 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1882 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1944 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1892 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1885 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1888 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1889 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1870 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1898 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=Bb2MT72pvNJ7ewOt3okU%2Bvuc0fM%3D HTTP/1.1" 200 1005513 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 2063 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 2053 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 2058 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 2050 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 2065 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 2053 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 2052 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=iFdVzfZ8iT1XUu1PhIkGXsZEans%3D HTTP/1.1" 200 1704083 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 2052 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 2062 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 2068 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 2055 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 2048 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 2075 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 2057 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 2057 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 2066 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 2059 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 2042 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 2066 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 2062 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 2062 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 2050 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 2055 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 2061 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1898 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1867 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_0_15?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=cT5qCXYjs1fHlC9NaFR%2FXeZEboI%3D HTTP/1.1" 200 4594129 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1943 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 712 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 706 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 712 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 713 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=xw6zSxziQIgnfuVQeitQE79TQrQ%3D HTTP/1.1" 200 8014141 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 709 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 707 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 1929 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 65, rows in current batch: 1917 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 17 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 907 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 919 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 904 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 885 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 17 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 17, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 879 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 886 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 874 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 877 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=xvO5OmV2AA6L8fBDeezLWz7c%2B10%3D HTTP/1.1" 200 134317 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 884 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 880 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 879 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 925 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1024 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1021 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1026 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 911 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 963 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 949 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_2 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_2 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_2 with existing session +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_7 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_7 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 890 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=qyhtKbWVsDraDsNA6aaFN%2BlZAtw%3D HTTP/1.1" 200 254295 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 923 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 922 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 912 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=OyxHQm77VvZaoRg5kNIY697Jrsw%3D HTTP/1.1" 200 26588 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 923 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 913 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=zptPVSj6u4tPu0DsxJisBFInlkA%3D HTTP/1.1" 200 484128 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_15 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_15 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 23 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_15 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=tWrGjrl5nBiaUPijKvkyH%2BDedg8%3D HTTP/1.1" 200 24234 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_13 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_12 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_13 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 66 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_13 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 66 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 66, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1902 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 38 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 38 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 38, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 2019 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 65, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 906 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 906 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 911 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 911 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 916 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 913 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 210 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2018 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2002 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2013 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_4 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1992 +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2005 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 88 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 2010 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 90 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 88 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_6 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1996 +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_6 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_6 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 2012 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 178 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 2019 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 178 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 177 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1992 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 183 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 177 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 2036 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1997 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 2002 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 2017 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 179 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1990 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 359 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 356 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 2012 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 356 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 358 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 2018 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 347 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 2002 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 41 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1988 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 42 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1988 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1988 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1960 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1987 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1964 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1992 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 2007 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1982 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1979 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1979 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1968 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1983 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1953 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1960 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1939 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1967 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=qXajfze0TdusIg%2FFecRMmYGwDjQ%3D HTTP/1.1" 200 128221 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1973 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1963 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1971 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1996 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1969 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=TVgpxTEIAfSgpvGdMAKOayRVPmQ%3D HTTP/1.1" 200 241861 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=pQml6WU%2FaAleI8D9XYjJOkYBtdQ%3D HTTP/1.1" 200 1001684 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=O%2Fn83E7dUxfQaMdu5dBpkITejeA%3D HTTP/1.1" 200 1693136 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_14 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_14 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 67 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_14 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 67 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 67, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1978 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1938 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1962 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1981 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2008 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1987 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=sDk%2FVLZ9lkjrR16RZhJACq51%2FfQ%3D HTTP/1.1" 200 3480993 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=NX0ZCjNnXLA3%2BYsuw64jUwBb54s%3D HTTP/1.1" 200 6783557 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1999 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1996 +DEBUG:snowflake.connector.result_set:user began consuming result batch 42 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 706 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 711 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 712 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 719 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 708 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 42 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=dmcw1wDjLZlsH4Q7E7DCF5QULFs%3D HTTP/1.1" 200 5533836 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 43 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1994 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 2003 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 43 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 913 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=rjtYn2BFIa5IT6y3NI01W5Cp0Pc%3D HTTP/1.1" 200 25148 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1965 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 2063 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 43 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 44 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1960 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1965 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=8lFjscI0LqBHzCQ%2BTMw3Q9wzE70%3D HTTP/1.1" 200 127264 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1922 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 2018 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 65, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 66, rows in current batch: 1944 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 23 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 23, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1966 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1946 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1997 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2018 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1972 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2019 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1918 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2013 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2002 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1991 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1912 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1882 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1930 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 2025 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 2003 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 2011 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1891 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 2056 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1932 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 2032 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1911 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1143 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 176 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 189 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 183 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 181 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 180 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 381 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 355 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 352 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=JuUWp4o7C1ep5qSeAZAm%2BBblVW0%3D HTTP/1.1" 200 501647 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 365 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 379 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 376 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_7 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_6 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 44 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 915 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 916 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 912 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 916 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 913 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 913 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 912 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 370 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 368 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 912 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 365 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=NZ5mp9vOZJJUrTQlH84GYW4vRgU%3D HTTP/1.1" 200 6582442 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 916 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 738 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 755 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 719 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 721 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 915 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 747 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 44 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 45 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_2 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 27 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_8 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=q58sLw0rpv37UmmqhnGa2gg2ZtE%3D HTTP/1.1" 200 879963 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 45 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 912 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 915 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=CkLDJZm6muojpJt61FyixQePwgc%3D HTTP/1.1" 200 1814936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 920 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 923 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 921 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=fEhqEtnmy1%2BNoE11dZAj96jtD5A%3D HTTP/1.1" 200 3373521 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 919 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 920 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 919 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 920 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 921 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 923 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 915 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 924 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 926 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 917 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 922 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 922 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 918 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 913 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.result_set:user finished consuming result batch 45 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 46 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_3 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 46 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 27 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 27, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 918 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 924 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 924 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1471 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 925 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=0lLxNuC%2BZ3JFgGga9AX6kTLeHTE%3D HTTP/1.1" 200 241738 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1463 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=kUv9MZfszD5qGGnACQE%2FTWCJ2X8%3D HTTP/1.1" 200 13365118 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1471 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1461 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1507 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1469 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 928 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_9 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 923 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 922 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 916 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 920 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 922 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 929 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 923 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 920 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 919 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 916 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 277 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 46 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 47 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 47 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 83 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 47 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 48 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 48 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_5 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 85 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 85 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 88 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=ax%2BmMF6ZJ7yOcmRgp%2FVljWXflJc%3D HTTP/1.1" 200 874423 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 86 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 87 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 88 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 48 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 49 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 49 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_6 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 173 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 174 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 173 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 175 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 176 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.result_set:user finished consuming result batch 49 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 50 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_7 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_9 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_9 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2008 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=ceq1MgmJADZWdMEPKquD0%2BMqkAc%3D HTTP/1.1" 200 16958113 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2014 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2031 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2015 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2008 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_10 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=Sn6BcUaiZ4YxG%2B2MZo6IGwTT3X4%3D HTTP/1.1" 200 456659 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_7 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 50 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=7CArBA7AugrlQ3apGo%2FaVMBd9Ck%3D HTTP/1.1" 200 6743248 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 174 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 344 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 348 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 348 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 351 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 346 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 50 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 51 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 51 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_8 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 350 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 698 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 699 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 694 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 691 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=chjS0BnKC1EV%2FpOG8KoXKqR%2BQbQ%3D HTTP/1.1" 200 13164649 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 701 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 51 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 52 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_9 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 13 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_10 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 13, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2004 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2036 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=RyXimBHwnVZTB1bg%2BeOaNTOOyMQ%3D HTTP/1.1" 200 1710071 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_10?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=4xmDqaymf7Bf8prpETJ0fLLK6mo%3D HTTP/1.1" 200 16899752 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2010 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=II32VJsBdE2WD8HCrm7XxmLzGaA%3D HTTP/1.1" 200 3432970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2018 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 2031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 2033 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 25 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 2014 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_11 +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_11 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 25 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 25, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_11 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2043 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2034 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2022 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2023 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2027 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2030 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2011 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1971 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1867 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1912 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1881 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1875 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1897 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1878 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1901 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1904 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1876 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1902 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1879 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1877 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1842 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_12 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_9 +DEBUG:snowflake.connector.result_set:user began consuming result batch 52 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_9 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 905 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_11?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=HIftuxC%2Bk1hE42ufhw9UJ7NekjU%3D HTTP/1.1" 200 16873188 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 908 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=qSXEcsZJEGjQODp3hsxbxoq88qI%3D HTTP/1.1" 200 1494755 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 904 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 52 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 53 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=MPbT1ftl1slUPAqpr9fY1cnFBq4%3D HTTP/1.1" 200 26316 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 53 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 927 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 901 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 53 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 54 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=OSLZad2p2cFKf1NdIbk9QqaqdGw%3D HTTP/1.1" 200 136721 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 33 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 54 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 33 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 33, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 899 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 54 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 55 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=%2FfMt4rmH1PKTd2yN9M2n66W%2Bx8k%3D HTTP/1.1" 200 258794 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 50 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 50 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_12 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 50, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1860 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1901 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_12?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=iCVvEy0pnIn1N1ISYjcYgcP36rk%3D HTTP/1.1" 200 17067252 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1875 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1881 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1867 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1937 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1862 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1880 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 65 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 55 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 65 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 65, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 872 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 55 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 56 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_3 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 56 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 880 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 294 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 56 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 57 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 57 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 85 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 57 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 58 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 58 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_5 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_5 with existing session +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 87 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 58 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 59 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 59 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_6 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 179 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 176 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 176 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 177 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:user finished consuming result batch 59 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_10 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_10 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_10 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_13 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_9 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_13 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_9 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 64 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_9 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_13?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=XZY6z0QcGL%2FXtnCrnfKJZy%2Fo%2B0s%3D HTTP/1.1" 200 16815155 +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 64 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 64, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1883 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1902 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1898 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1883 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1884 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1912 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1899 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1880 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1914 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_11 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_11 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1913 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_11 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1910 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1883 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1876 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1895 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1932 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1898 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1930 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1983 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=Ry0o6wdxq%2B3HnU4rLi5MFuulFB0%3D HTTP/1.1" 200 489293 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1973 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1960 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1989 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1950 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1977 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1963 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1985 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1904 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1891 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=ttCZPLrmBazyK3i5zBXJnYmoCBM%3D HTTP/1.1" 200 848463 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1882 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=O9%2Fz%2BInMP2h87VmOTCjRU48u6cU%3D HTTP/1.1" 200 1679083 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=U6oMD6ZKmyuV12FiuRYfmLmw9N0%3D HTTP/1.1" 200 3424012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1881 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 60 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 351 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 354 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 352 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 357 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 357 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 60 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1898 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 61 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=mdmm%2BuuWYNiQwMMxPiq1MIcJ6FU%3D HTTP/1.1" 200 6714513 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1864 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1844 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1895 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1891 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 61 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 707 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 710 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 706 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 709 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=wW8aO8iwv95jOq9aS%2BdsJS0B6bA%3D HTTP/1.1" 200 6675411 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 719 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1877 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 61 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 62 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1913 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_14 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_14 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_14 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1906 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1855 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1877 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1881 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1872 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1931 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1983 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1970 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1981 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 2004 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1995 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1998 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1930 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1977 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1971 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1972 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1982 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 62 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1991 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 708 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1971 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:The lock directory exists. Other process may be updating the cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json.lck +DEBUG:snowflake.connector.ocsp_snowflake:Failed to locate OCSP response cache file. No worry. It will validate with OCSP server: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1982 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 908 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1976 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.result_set:user finished consuming result batch 62 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 63 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_1 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1968 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=giPQ%2BSjT5ZfDvnE9xQiRqWcJ2Ws%3D HTTP/1.1" 200 26577 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1997 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_14?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=nYGJT2VkL7pIBaLjRrIHygpa4G8%3D HTTP/1.1" 200 16995666 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1971 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1978 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=OG1nSBJizpN15%2FfP1lgFD7j2p4g%3D HTTP/1.1" 200 137710 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1957 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1948 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1946 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1958 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_15 +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1947 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_15 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1953 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1971 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.result_set:user began consuming result batch 63 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1946 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 901 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1942 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 913 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 914 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1945 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1962 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 907 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1945 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1948 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1936 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 909 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 63 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 64 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1976 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_2 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1952 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1948 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1981 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1980 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1954 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1942 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1974 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1942 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1931 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1933 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1988 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1959 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1996 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1977 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_1_15?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=xvZMRPztXs2U2mbhcrKraDzuQKA%3D HTTP/1.1" 200 758603 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1987 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 2001 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1987 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1987 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1989 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1964 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1987 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1998 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1959 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1976 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1968 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1949 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_15 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=MspPDQ4O3GegzueN4pNP1Qj3ljo%3D HTTP/1.1" 200 256787 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1946 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_15 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 2007 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 2013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1989 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=Dg9VdaSm5oeG6lxeDtdGS%2FYSLPw%3D HTTP/1.1" 200 35020 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 64 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 908 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 912 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 902 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 64 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 65 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 65 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 897 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 908 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 905 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 912 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2003 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 899 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 915 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1993 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2010 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 908 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 905 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1985 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 913 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1998 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 915 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1949 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 912 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 181 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1983 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 65 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 66 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 2003 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 66 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1961 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_4 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 85 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1973 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 66 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 67 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1979 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 67 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 2021 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1977 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 88 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 2024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 91 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 89 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1973 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.result_set:user finished consuming result batch 67 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 68 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:user began consuming result batch 68 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_6 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 2003 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1959 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 178 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 2009 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 174 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 2001 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 175 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 68 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1989 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 69 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1989 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_7 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1981 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1995 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1977 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1991 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1974 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 2002 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1993 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1950 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1951 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1960 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=Je5CqXGaQOJ7TUS%2FLvzvVjlFaew%3D HTTP/1.1" 200 489340 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1936 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1912 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1937 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1921 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1908 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1898 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1937 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1919 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1920 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1913 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1945 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1907 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1894 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 69 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1898 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_7 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 357 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=Gi2nToUDsZ3btiFlI3MHviudd28%3D HTTP/1.1" 200 6679445 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 354 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 353 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 357 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 357 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 69 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 70 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_8 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:The lock directory exists. Other process may be updating the cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json.lck +DEBUG:snowflake.connector.ocsp_snowflake:Failed to locate OCSP response cache file. No worry. It will validate with OCSP server: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=AmvjdgBOupeXxe20s%2B3o42im4sM%3D HTTP/1.1" 200 1013697 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=BBFXizWPNvXfXcTeKBjcWg7UG4s%3D HTTP/1.1" 200 3441865 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_13 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_13 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=Mq4r3xudRCspUrICZGHB%2F118Un8%3D HTTP/1.1" 200 1715487 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=ZK8%2BkuLAVC4%2Ff4d2MQBoVIc9Bzc%3D HTTP/1.1" 200 132415 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_13 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1895 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1893 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1930 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1863 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1921 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1922 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 70 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 716 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 710 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1976 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101646&Signature=ZcIaKUyWGsdAqxBEHj6iy1wcZ7c%3D HTTP/1.1" 200 6273629 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 712 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 710 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1976 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 70 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 71 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 2015 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 2038 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 2014 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 2020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 2003 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 71 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 904 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 913 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 907 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 916 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 71 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 72 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=R6IPlFmgsz%2B%2FD4nQdunkExLRpBg%3D HTTP/1.1" 200 253712 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_14 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_14 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 70 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_14 +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.result_set:user began consuming result batch 72 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 70 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 70, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 911 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 72 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 73 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 2027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 2009 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 2015 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 2058 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1937 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1946 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 2047 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 2031 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1966 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 30 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 2092 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1857 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 2059 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 65, rows in current batch: 1845 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 66, rows in current batch: 1936 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 31 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 73 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 31 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 67, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 31, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 68, rows in current batch: 2068 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 69, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 909 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 910 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1984 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 904 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1946 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2058 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 917 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1318 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 912 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 912 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 909 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 190 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 904 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 913 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 200 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 188 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 192 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 912 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 194 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 908 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 908 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 902 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 195 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 201 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 191 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 905 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 195 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 73 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 392 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 74 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 380 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 74 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 30 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 30, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 918 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 901 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 918 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 908 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 912 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 908 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 907 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 884 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 907 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 899 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 913 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 911 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 910 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 902 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 338 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 74 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=tc3LP4SJlkIyaardRYEiw2inC5Y%3D HTTP/1.1" 200 521911 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 386 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 385 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 396 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 775 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 782 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=pnKxZcbiEQHkHjsxT1qynVzdw80%3D HTTP/1.1" 200 882532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 769 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=vuK0%2BglvkM%2BWYYKt5ys3fmjHcjI%3D HTTP/1.1" 200 6768880 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=nzwYDCBFt22oRq4frplSNVMuQys%3D HTTP/1.1" 200 1812570 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_8 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=0dMjbO6sJVUhmKZE42vc7QPwT60%3D HTTP/1.1" 200 3306241 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 777 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 792 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1533 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1529 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=5VvVBKTtL%2F2KNVVDT6P7H2MVUao%3D HTTP/1.1" 200 13199005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1543 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 12 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_9 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=i%2FlJyydx4N5PiJk7fz6n8WYiRzo%3D HTTP/1.1" 200 16840296 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 25 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1558 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1561 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_10 +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_10 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 12, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_10 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1963 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_10?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=9Fi5i8jdmiaT9Wg919meGvGfD90%3D HTTP/1.1" 200 16913712 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1994 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_11 +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 25 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 25, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1976 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_11 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1963 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_11?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=0%2Btg%2FQeWQztWSflOoU7BeIcXXlc%3D HTTP/1.1" 200 16895419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1864 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1852 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1860 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1838 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1843 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 49 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 49 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_12 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 49, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1857 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1897 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_12?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=BGlzurAqVD2M3RP13iFaBgX1QQU%3D HTTP/1.1" 200 16793147 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1852 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1855 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1865 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1863 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1843 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1975 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 41 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 42 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 42 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_13 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1972 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1975 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1987 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1979 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1979 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1941 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1994 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1959 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1995 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1950 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1962 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1982 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1978 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1983 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1974 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1973 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1971 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1985 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1994 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_13?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=8uowrg00e0gEj%2BVafIrMDz3%2FbOQ%3D HTTP/1.1" 200 16959662 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1948 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1956 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 42 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 43 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_14 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_11 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_11 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 63 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_11 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_14 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_14 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_14?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=IA5ePEb5h5CGqNO6qNT7VEHcaNY%3D HTTP/1.1" 200 16885279 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_12 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 65 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_10 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_10 +DEBUG:snowflake.connector.result_set:user began consuming result batch 43 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 43 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 44 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_15 +DEBUG:snowflake.connector.result_set:user began consuming result batch 44 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 63 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 63, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1976 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_15 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_15 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1973 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1953 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1953 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1960 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1976 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1979 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1993 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1981 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1978 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1967 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1970 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1989 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1993 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1961 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 2002 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1964 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1972 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1909 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1895 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1931 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_2_15?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=rOjgy0YrK1K9PiraPwdLCesXdUY%3D HTTP/1.1" 200 13195890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1892 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_13 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_13 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1878 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_13 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1847 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1934 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 44 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 45 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 45 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 65 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 65, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1939 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1886 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1868 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1902 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1874 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1889 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1923 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1892 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1895 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1858 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1892 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1896 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1921 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1884 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1913 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1895 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1898 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_3_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=SWV2xj6808aD3aPcpcdUz%2B5LZrc%3D HTTP/1.1" 200 33458 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1879 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1864 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 1879 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 45 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 46 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 46 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1902 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1908 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_3_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=N5gYbjDd6KI32mcdWPvBSYMarAs%3D HTTP/1.1" 200 126403 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1991 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1927 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1930 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 46 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 47 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_14 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_14 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_14 +DEBUG:snowflake.connector.result_set:user began consuming result batch 47 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1891 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1927 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1898 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1951 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1915 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1924 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1895 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1904 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1921 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1928 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1922 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1949 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1877 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1902 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1943 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1983 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1991 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1985 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 2022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1977 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_3_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=4%2B4sX7iDO9j8F2fKt6vGuXFiA9I%3D HTTP/1.1" 200 242207 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1975 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 2017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 2013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1971 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 47 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 48 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_3_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=MdvAjJ5V3pg4uRV4DtznWLcJwrA%3D HTTP/1.1" 200 494955 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_15 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_15 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 52 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_15 +DEBUG:snowflake.connector.result_set:user began consuming result batch 48 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 52 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 52, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 2051 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 2051 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 2048 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1930 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1930 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1451 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 48 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 49 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 49 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 185 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 49 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 50 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_4 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 50 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 185 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 188 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 185 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 177 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:user finished consuming result batch 50 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 51 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 51 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 185 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 185 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 189 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 381 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 370 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 51 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 52 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 52 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 370 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_7 with existing session +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 364 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 366 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 753 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 727 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 740 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:user finished consuming result batch 52 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 53 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_8 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_3_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=Y%2FLvIg7EYnuyaCzt6nCu4mdjayY%3D HTTP/1.1" 200 1849493 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_3_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=5MlbJ2OimXbPdw16hjEXOh0x4SI%3D HTTP/1.1" 200 839360 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_3_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=AMBF3KbZ6mMfUS4SmPGNxjb8CiA%3D HTTP/1.1" 200 6622980 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_3_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=UnjbXmzc4per6DI6l6HIOreNcn0%3D HTTP/1.1" 200 3424510 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_8 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 53 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 736 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 753 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1490 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_3_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=qM88oFyw%2BJuc1sK7b%2B6vOIDn%2FzI%3D HTTP/1.1" 200 13181126 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1492 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1446 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 53 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 54 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_9 +DEBUG:snowflake.connector.result_set:user began consuming result batch 54 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1870 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_9 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_3_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=NVIN%2BtsBunx0vNI5Apew8%2FWktw8%3D HTTP/1.1" 200 16906714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1889 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 54 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 55 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 13 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_10 +DEBUG:snowflake.connector.result_set:user began consuming result batch 55 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 13 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_10 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 13, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1878 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_3_10?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=VkOKAuPP%2F3twFJ3ff0UpHqo2zHo%3D HTTP/1.1" 200 16839996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1861 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1864 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1895 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 55 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 56 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_11 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 25 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_11 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_11 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 56 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 25 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 25, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1900 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_3_11?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=j36LrtPlnTJORKXUD1JEFUatXxA%3D HTTP/1.1" 200 16873126 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1861 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1868 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 56 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 57 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 49 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 57 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 49 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_12 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 49, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1903 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1866 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1877 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1889 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1889 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1883 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1857 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1854 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1881 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1902 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1883 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1915 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1878 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1895 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1861 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1885 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1876 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1870 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1901 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1897 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_3_12?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=vCXLZIPyKxK%2FXpX2F4mLlrIt7s0%3D HTTP/1.1" 200 16884693 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1951 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1953 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 57 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 58 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_9 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_10 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_10 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_13 +DEBUG:snowflake.connector.result_set:user began consuming result batch 58 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_13 with existing session +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1982 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1959 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1966 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1999 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1968 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1961 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1963 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1934 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1949 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_11 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_11 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1977 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 64 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_11 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1954 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1991 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1950 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1954 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_3_13?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=%2BrNURr1mBu1VyGnSP3GOHrchNyc%3D HTTP/1.1" 200 16831096 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1948 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1981 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 58 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 59 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_14 +DEBUG:snowflake.connector.result_set:user began consuming result batch 59 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_14 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_14 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1971 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1974 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1972 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1983 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1960 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1948 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1987 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1981 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1960 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1978 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1999 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1955 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1956 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1963 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1957 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1954 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1984 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_3_14?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=MX2ZussDJ5ufnKw6yvVxrz61Q2Q%3D HTTP/1.1" 200 16894930 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 2016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1966 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 59 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 60 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_15 +DEBUG:snowflake.connector.result_set:user began consuming result batch 60 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_15 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 64 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 64, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_15 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1988 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1989 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2003 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2008 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1979 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1988 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1990 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1990 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1976 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1982 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1995 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1996 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 2003 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1985 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1992 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 2021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 2047 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 2052 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 2064 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 2065 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 2050 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 2081 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 2046 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_3_15?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=CNwNTYrFsKz%2BOx2lW10QwM0y7QI%3D HTTP/1.1" 200 8009442 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 2056 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 2045 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1860 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1937 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1930 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1898 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 60 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 61 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_12 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 61 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1909 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1899 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1902 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1990 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1988 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2009 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1968 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1988 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 2013 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 2007 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1997 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 2010 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1973 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1967 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 2004 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1994 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 2005 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f18dafc5-cf19-4a00-bfd6-9e6ad23ba080 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_4_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=RAxkjsDySD1OMWnnnYqpypuhY6k%3D HTTP/1.1" 200 33398 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=f18dafc5-cf19-4a00-bfd6-9e6ad23ba080 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1991 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_15 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_15 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 30 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 2012 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 61 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 62 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_13 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_13 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_13 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 62 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1997 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1960 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1964 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1993 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1987 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1997 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1983 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1974 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1963 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1980 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1963 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1970 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1961 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1958 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_4_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=%2BWU0ag0XFxnhr9yM7N9ZgSKkNbc%3D HTTP/1.1" 200 128442 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1974 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 62 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 63 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_4_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=uK5CLQobM%2Fq5rNBjifapPp3X6l4%3D HTTP/1.1" 200 241700 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_14 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_14 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_14 +DEBUG:snowflake.connector.result_set:user began consuming result batch 63 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 2022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1930 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1911 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 63 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 64 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 64 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 30 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 30, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1917 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1907 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1918 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1883 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1929 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1924 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1927 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1913 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1934 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1879 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1939 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1892 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1939 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1894 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1908 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1935 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1900 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1888 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1927 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_4_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=6yaIEopb0cL69KgRVnIMUL0u6lk%3D HTTP/1.1" 200 499322 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 591 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 64 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 65 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 65 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 180 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 65 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_4 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 66 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 66 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 187 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 197 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 192 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 186 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 66 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 67 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 67 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 182 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 184 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 185 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 189 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 357 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 377 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:user finished consuming result batch 67 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 68 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_3 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 68 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_7 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 367 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 372 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 383 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 737 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_4_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=oaxXtjOpitQkMA4CB1LbUPGclNk%3D HTTP/1.1" 200 6615498 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 728 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 746 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 68 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 69 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_4_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=G5F04Bpf%2FB4WTdQZrMgSRdv%2B3wY%3D HTTP/1.1" 200 844775 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_4_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=skXB%2FPVl3p7M5qi9CAJvst%2BlFbg%3D HTTP/1.1" 200 1896730 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_4_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=W3LffyY0e46GBYpXnngfUBNRpnA%3D HTTP/1.1" 200 3511380 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 69 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 746 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 746 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1480 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_4_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=idyxEw%2BXUiwCqiuiAbpnQnByq5A%3D HTTP/1.1" 200 13159016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1455 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1487 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 69 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 70 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_9 +DEBUG:snowflake.connector.result_set:user began consuming result batch 70 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_9 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1888 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_4_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=9OX7ebzi13AkRbRrY88jGuvMSYg%3D HTTP/1.1" 200 17062786 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1967 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 70 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 71 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 25 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_10 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_4_10?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=iiInI98d%2FsVbxOxCVZwvDFDtCdU%3D HTTP/1.1" 200 16833909 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 13 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 71 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 13, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1857 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1849 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1863 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 71 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 72 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_11 +DEBUG:snowflake.connector.result_set:user began consuming result batch 72 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 25 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_11 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 25, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1932 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_11 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1882 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_4_11?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=L5AMJd6iw0i1O%2BEJvG5g6L27Nec%3D HTTP/1.1" 200 16871220 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1860 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1966 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 72 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 73 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 48 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 73 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_12 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 48 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 48, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1966 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_4_12?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=BU%2FAbsGPPeegp%2FIOezQdZeIewCo%3D HTTP/1.1" 200 16851237 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1948 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1944 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1864 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1883 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 73 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 74 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 63 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 74 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_10 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_10 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 63 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_13 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 63, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1887 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_13 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1887 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1923 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1884 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1886 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1908 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1898 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1892 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1898 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1915 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1911 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1897 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1878 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1970 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_4_13?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=us1xZn%2Fuc1EHsOwlgkt5ApbnkaE%3D HTTP/1.1" 200 16921251 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1980 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_11 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_11 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 63 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1969 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 74 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 75 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_14 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_14 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 75 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_14 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1975 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2015 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2001 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2027 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2011 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2036 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2022 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2022 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1979 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1973 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1990 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1972 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1966 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1961 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1961 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1971 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1973 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1963 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1977 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1974 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_4_14?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=VOb26zJ3ONNE3WWq%2FDBB8f%2Fs7fc%3D HTTP/1.1" 200 17020024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1927 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1961 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 75 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 76 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_15 +DEBUG:snowflake.connector.result_set:user began consuming result batch 76 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_15 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 63 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 63, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_15 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1988 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1966 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1971 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1943 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1999 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1982 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1973 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1978 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1995 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1960 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1974 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1995 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1989 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1978 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_4_15?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=QJ3LQOglPVPgLMDNbdObbasd2F8%3D HTTP/1.1" 200 5237922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1930 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1864 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1859 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1863 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1955 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 76 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 77 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_12 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 63 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_12 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 77 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 63 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 63, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1912 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2022 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2073 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2060 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2066 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2081 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 2073 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 2077 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 2067 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 2067 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 2082 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 2071 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 2074 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_15 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_15 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 25 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 2070 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_15 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 2058 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1999 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1989 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1996 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1992 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1975 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_5_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=c6wUeWT50s25rBFQioJIvoWiJfI%3D HTTP/1.1" 200 32693 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1979 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 77 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 78 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_5_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=9YTFlmZit%2FJYWGbOcqjiuCbJzjY%3D HTTP/1.1" 200 124203 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_13 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_13 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 67 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_13 +DEBUG:snowflake.connector.result_set:user began consuming result batch 78 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 67 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 67, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1931 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1930 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 2024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 2022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1971 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1927 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_14 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1930 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 65, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 66, rows in current batch: 1908 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 78 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 79 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 79 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1922 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1926 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1920 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1889 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1948 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1884 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1912 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1926 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1884 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1912 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1947 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1915 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1908 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1939 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1933 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1916 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1912 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1888 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1924 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_5_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=Cem9f%2ByiqJCB%2Bzq1CACcD0%2FPW6U%3D HTTP/1.1" 200 237662 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1924 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 2019 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1971 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 79 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 80 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 80 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 25 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 25, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2001 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2062 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_5_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=elVi10ofXhM%2BVwEgt6EoE9Qj%2BdA%3D HTTP/1.1" 200 493412 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1944 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2005 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1948 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1944 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1728 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 80 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 81 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 81 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 182 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 81 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 82 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 82 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 183 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 182 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 183 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_5 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 184 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 82 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 83 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 83 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 187 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_6 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 192 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_5_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=KutnBIxg6FGr2sDcxaDYgV6Z0Lk%3D HTTP/1.1" 200 833040 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 187 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 366 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 366 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.result_set:user finished consuming result batch 83 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_4 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 84 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 84 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 385 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 374 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 374 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 747 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 746 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_5_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=kRxHxdJBCtpB%2FCJ5ozAkm0hySbY%3D HTTP/1.1" 200 6726450 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 745 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 84 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 85 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 85 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 756 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_8 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 762 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1502 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1506 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1471 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 85 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 86 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_9 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_5_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=rJJS4AM7lwwc%2F0S%2BqblwypQu%2BXo%3D HTTP/1.1" 200 1819982 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_5_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=Di6zj%2BBdCFkRXDisJ%2FeQdAtcQXE%3D HTTP/1.1" 200 3354424 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_5_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=I6%2FBY8zKBoPn21BvFuHRYTN1wwM%3D HTTP/1.1" 200 13193829 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_9 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 86 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1900 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_5_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=%2BqC%2FL92uSi9qSBcCb5e3v46Fl6I%3D HTTP/1.1" 200 16921793 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1870 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 86 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 87 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 26 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_10 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 13 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 87 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 13, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1872 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_5_10?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=VgnRZDGA%2F7troiB5SAQ0Um%2Fvsk0%3D HTTP/1.1" 200 16950479 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1849 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1887 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 87 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 88 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_11 +DEBUG:snowflake.connector.result_set:user began consuming result batch 88 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 26 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_11 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 26, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1887 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_11 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1853 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1859 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1871 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_5_11?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=TWGUlkl0Au0Ya9acSGL46X22Q5M%3D HTTP/1.1" 200 16927369 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1851 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1862 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1845 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1854 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1848 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1850 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1864 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1876 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 88 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 89 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_12 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_5_12?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=eTjRsXUthyRG3T8FEEpnbpEw1n4%3D HTTP/1.1" 200 16815408 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_11 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_11 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 64 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_11 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_10 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 50 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 89 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 50 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 50, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1927 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1944 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1937 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1981 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 89 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 90 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_13 +DEBUG:snowflake.connector.result_set:user began consuming result batch 90 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_13 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_13 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1934 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_5_13?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=7e%2Bm7aOmUO1ZCnOCSloFzAStvQ4%3D HTTP/1.1" 200 16849798 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1958 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 90 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 91 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_14 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_14 +DEBUG:snowflake.connector.result_set:user began consuming result batch 91 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_14 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1960 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1980 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1964 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1951 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1990 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1960 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1964 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1962 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1959 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1988 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1955 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1960 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1980 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1958 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1977 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1977 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1966 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1941 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1988 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_5_14?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=rcZEg90hj73V4FkBuwdvNrVnF60%3D HTTP/1.1" 200 16970020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1951 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1907 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 91 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 92 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_15 +DEBUG:snowflake.connector.result_set:user began consuming result batch 92 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 64 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 64, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1893 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_15 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_15 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1916 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1913 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1888 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1899 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1886 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1913 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1904 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1882 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1892 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1887 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1905 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1928 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1880 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1915 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1930 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1891 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1901 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_5_15?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=B49vffdC%2FzLt9biZ%2F8f85wZMLfs%3D HTTP/1.1" 200 3225969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1860 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1866 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1931 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1855 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1927 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1937 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1931 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 92 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 93 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_15 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_15 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_15 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_6_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=oFbWdZj7YmLQO%2BtORcf0TmB8EG8%3D HTTP/1.1" 200 33441 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_12 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 93 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1930 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1927 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1990 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 93 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 94 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_6_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=NixiXDyT8Wi%2BMqfO4zdE6nDrQOU%3D HTTP/1.1" 200 126756 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_13 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_13 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_13 +DEBUG:snowflake.connector.result_set:user began consuming result batch 94 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2018 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1960 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_14 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_14 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 69 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 2025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1964 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 94 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 95 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 95 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 69 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 69, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1980 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2013 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2015 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1996 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1977 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1992 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2003 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1999 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1987 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 2003 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 2010 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 2005 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 2011 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1992 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 2001 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 2013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1989 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1984 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_6_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=xXlmizaf48KQEsJgvfLNPk16LUY%3D HTTP/1.1" 200 240746 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1978 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 2033 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 2036 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1854 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 2031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 2071 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 2022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 65, rows in current batch: 2119 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 66, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 67, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 68, rows in current batch: 1976 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 95 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 96 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 96 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1952 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_6_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=U2Pr7J6l1Tcvy2bHzu%2B6GVZFC4w%3D HTTP/1.1" 200 501136 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2087 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1962 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2015 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1865 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2037 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 2036 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1368 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 96 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 97 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 97 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 182 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 97 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 98 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 98 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 181 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 189 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 185 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_5 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 98 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 99 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 99 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 188 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 189 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 170 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 367 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_6_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=oelbUGPHNRBj%2Bsu%2B6LbQw%2B9gbms%3D HTTP/1.1" 200 841579 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 373 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:user finished consuming result batch 99 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 100 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 100 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 380 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 370 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 360 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 744 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 724 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 753 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 100 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 101 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 101 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_8 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 751 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 754 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_6_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=HQMoaNrcqwbmOCFJ47cAOYwPVoY%3D HTTP/1.1" 200 13345009 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1467 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1478 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1473 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 101 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 102 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_9 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_6_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=H2HvCvAjULtLGKElQBj%2BQwAfeM8%3D HTTP/1.1" 200 1849379 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_6_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=X%2FTJ210oa%2BZr1YpR2rA3tCu4sx8%3D HTTP/1.1" 200 3447312 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_6_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=IuClC3FLhV4nvXEPxBsvNfTvz8A%3D HTTP/1.1" 200 6742670 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 13 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_9 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_6_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=1zU1hgRfjGZWK5GT6MF40VBN2Hk%3D HTTP/1.1" 200 16990918 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 102 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1840 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1867 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1868 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 102 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 103 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_10 +DEBUG:snowflake.connector.result_set:user began consuming result batch 103 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 13, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1890 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_10 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1892 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_6_10?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=amfU6ohAAseiu4WUqzRJ0HCtt5o%3D HTTP/1.1" 200 16835446 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1852 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1880 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 103 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 104 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_11 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 25 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_11 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_11 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 104 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 25 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 25, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1921 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_6_11?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=asscUU4NbU9s%2B0ZQVeWHMAHtayk%3D HTTP/1.1" 200 16896738 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1970 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 104 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 105 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 50 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 105 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 50 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 50, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_12 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1970 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1959 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1987 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1966 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1961 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1972 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1962 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1932 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1886 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1896 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1878 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1870 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1866 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1858 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1866 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1880 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1871 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_6_12?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=6VScx3pI0WkLck%2F25LhEy%2FZCPHA%3D HTTP/1.1" 200 16890617 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1864 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1861 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1862 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1881 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 105 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 106 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 65 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 106 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_13 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 65 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 65, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1857 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1863 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1863 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1898 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1896 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1861 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1908 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1879 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1886 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1889 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1874 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1875 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1889 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1879 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1888 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1869 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1889 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1887 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1861 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1882 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1866 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_6_13?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=c61Vx4PZKWiE%2FAelY34P2GirwRs%3D HTTP/1.1" 200 16953019 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1862 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1854 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1865 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1859 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1865 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1853 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1850 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1888 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_11 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_11 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1855 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1861 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1866 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1865 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1854 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1865 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1854 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 1887 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 106 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 107 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_14 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_14 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_14 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_10 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 64 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_10 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 107 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 64 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 64, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1887 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1842 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1860 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1886 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1847 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1866 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1887 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_6_14?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=TyUJG1kd99HunXrsApoS%2FFUsN0k%3D HTTP/1.1" 200 16989975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 2023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 2066 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 2068 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 2080 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 2066 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 2085 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 2078 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 2059 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 2086 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 2074 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 2080 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 2068 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 2089 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 2038 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 2082 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 2059 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 2073 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1951 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1938 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1991 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 107 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 108 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_15 +DEBUG:snowflake.connector.result_set:user began consuming result batch 108 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_15 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1970 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_15 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1987 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1949 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1952 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1964 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1949 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1960 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1932 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1967 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1979 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1950 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1944 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1987 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1950 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1957 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1945 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1944 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1967 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1951 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1946 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1950 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_6_15?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=PWcVLE1EYBkAEQFZmkbZw62%2FUow%3D HTTP/1.1" 200 16873096 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1861 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 108 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 109 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_16 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_12 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_12 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_16 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 109 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_16 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1898 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1909 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1909 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1887 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1919 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1911 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1882 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1888 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1898 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1926 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1887 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1904 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1888 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1875 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1894 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1928 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1912 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1950 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1898 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1905 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1945 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 2002 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 2013 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1986 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_6_16?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=V3y6WJ%2Bo1XFqQAONuG4kF%2F19KhY%3D HTTP/1.1" 200 1096304 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1996 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 109 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 110 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_16 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_16 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_16 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_7_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=Rj8hv4r0xNy5GRh%2B1PfFrc99CFE%3D HTTP/1.1" 200 33914 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_13 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_13 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_13 +DEBUG:snowflake.connector.result_set:user began consuming result batch 110 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1951 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1948 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1986 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 110 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 111 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_7_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=hAJL2RkFRbnHVzpmFBrDYwsniFw%3D HTTP/1.1" 200 128849 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_14 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_14 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 63 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_14 +DEBUG:snowflake.connector.result_set:user began consuming result batch 111 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 63 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 63, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1987 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 2015 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 2027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 2020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 2015 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 2004 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 111 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 112 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_15 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_15 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 73 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_15 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 112 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 73 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 73, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1991 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1914 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1924 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1892 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1876 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1907 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1925 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_7_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=43KbR7RGk81PaDMInAlQ2yTB5n4%3D HTTP/1.1" 200 239020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1919 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1915 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1927 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1946 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 2023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 2048 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 2046 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 2041 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 2045 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 2020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 65, rows in current batch: 2057 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 66, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 67, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 68, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 69, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 70, rows in current batch: 1948 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 71, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 72, rows in current batch: 2007 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 112 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 113 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 113 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1903 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1892 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1932 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 727 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 113 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 114 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 114 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 189 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 114 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 115 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 115 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_5 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 190 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 184 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 187 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 188 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 115 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 116 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 116 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_6 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 179 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 181 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 178 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 181 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 367 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 354 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 116 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 117 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_7 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_7_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=zEb96qNOvkJQFq4ELF18uaLLT20%3D HTTP/1.1" 200 501251 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 117 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 380 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 387 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 364 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 743 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_7_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=sXnZAg%2FJ4ddu%2BuQzT9QsM56O8Rg%3D HTTP/1.1" 200 940524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 739 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_7_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=Wch115ZA%2Bx684pt%2F4bem82eS22E%3D HTTP/1.1" 200 1735604 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_7_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=SDTZZRIMFhdarXLD%2FtMR8z4l42o%3D HTTP/1.1" 200 3443642 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 737 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_7_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=rkgW2XRbZamzUrqhwEhTVOe97KQ%3D HTTP/1.1" 200 6819611 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 117 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 118 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_8 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 118 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 729 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 731 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 733 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1442 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1466 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1436 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 118 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 119 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_9 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_7_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=zZYa10DZ%2B3k6jDpYbImqHMiDm70%3D HTTP/1.1" 200 13191031 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_9 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 119 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1462 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1473 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1896 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_7_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=O8aNA3PhxvbVlzyVngm%2FqrQvQAo%3D HTTP/1.1" 200 16926650 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1863 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1870 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 119 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 120 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 13 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_10 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 120 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 13, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1915 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_7_10?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=fPyMTVX36kdP91rpAvMj3p7wSM0%3D HTTP/1.1" 200 16872184 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1865 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1861 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1866 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1853 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 120 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 121 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_11 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 26 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_11 +DEBUG:snowflake.connector.result_set:user began consuming result batch 121 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 26 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_11 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 26, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1865 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1881 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_7_11?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=ygC7tmpJMX3k%2BzmTzjt6HpqRZ7I%3D HTTP/1.1" 200 17017230 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1842 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1851 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 2021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 2034 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 2021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 2025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 2017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 2025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 2009 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 2001 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 121 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 122 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 50 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 122 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 50 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_12 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 50, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1866 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1874 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1892 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1886 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1882 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1867 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1898 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1883 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1912 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1892 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1904 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1873 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1909 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1876 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1902 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1892 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1872 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1886 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_7_12?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=qN2PdQEzQ6a3B4ntD6Jt8OLEAJY%3D HTTP/1.1" 200 17031615 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1863 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1845 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1863 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1843 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1925 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 122 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 123 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 64 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_13 +DEBUG:snowflake.connector.result_set:user began consuming result batch 123 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_13 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 64 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 64, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1887 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_10 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1924 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1879 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1904 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1871 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1865 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1895 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1878 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1852 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1881 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1872 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1917 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1884 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1931 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1875 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1874 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1862 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1867 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_7_13?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=%2FWQvBe5C8g%2BHXmmMbk7hgpyasnI%3D HTTP/1.1" 200 16813751 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1860 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1855 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1852 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1886 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 123 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 124 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_14 +DEBUG:snowflake.connector.result_set:user began consuming result batch 124 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_14 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_14 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1909 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1963 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1982 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1977 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1948 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1991 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1963 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1991 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1976 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1976 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1938 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1987 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1974 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1970 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1980 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1957 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1951 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1977 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1982 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1972 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_7_14?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=C1olvv4qINAGrwoy9ORr%2BgEtxM0%3D HTTP/1.1" 200 16984408 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 2009 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1969 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 124 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 125 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_15 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_11 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_11 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_11 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_15 +DEBUG:snowflake.connector.result_set:user began consuming result batch 125 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_15 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1957 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1970 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1995 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1966 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1989 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2002 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2019 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1985 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1988 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1983 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 2007 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1993 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1987 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1982 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1995 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1982 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1974 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1971 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1993 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1970 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 2006 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836ed-0502-b1d6-1a4b-0303c5433797_0/main/data_0_7_15?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668101662&Signature=bVPz8Gr32bavAqbOLdaug6pLqwM%3D HTTP/1.1" 200 9886109 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 2009 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1937 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1936 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 125 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 126 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_12 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 126 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1927 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1948 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 2016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 2019 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 2018 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 2009 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 2033 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 2009 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1998 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 126 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 127 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_15 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_15 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 48 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_15 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_13 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_13 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_13 +DEBUG:snowflake.connector.result_set:user began consuming result batch 127 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1999 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_14 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1965 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1927 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1927 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1888 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 127 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 128 +DEBUG:snowflake.connector.result_set:user began consuming result batch 128 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1927 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 2021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 2017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 2014 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1997 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 128 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 129 +DEBUG:snowflake.connector.result_set:user began consuming result batch 129 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 48 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 48, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2059 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 2044 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 2096 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 2072 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 2009 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1951 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 917 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 129 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 06:47:09] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2ze0w.30IvRBnVCyWm-YXnzBbd6xlw1jc&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2ze0w.30IvRBnVCyWm-YXnzBbd6xlw1jc&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2ze0w.30IvRBnVCyWm-YXnzBbd6xlw1jc&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2ze0w.30IvRBnVCyWm-YXnzBbd6xlw1jc&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2ze0w.30IvRBnVCyWm-YXnzBbd6xlw1jc&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2ze0w.30IvRBnVCyWm-YXnzBbd6xlw1jc&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 26.68s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 26.69s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 26.69s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=3e9fef95-8446-443b-a1c4-e2c161b894f0 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 43ae847b-1f15-4fdb-99b6-6d01758045b7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2365591049632 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2365591049632 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2365591384368 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2365591384368 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2365591384368 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2365591384368 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2365591049632 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2365591049632 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=3e9fef95-8446-443b-a1c4-e2c161b894f0&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=43ae847b-1f15-4fdb-99b6-6d01758045b7 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=c7535f04-e9c5-4f4a-bee0-5718bebecb98 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 096c2b0d-b162-4b58-8724-c7a383fb1c94 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=c7535f04-e9c5-4f4a-bee0-5718bebecb98&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=096c2b0d-b162-4b58-8724-c7a383fb1c94 HTTP/1.1" 200 1556 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00190s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 1171cd6f-fb22-4edf-85b5-61ef6d968fee +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 18c6cbdd-8321-4bd1-b5d8-3345ae994706 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1171cd6f-fb22-4edf-85b5-61ef6d968fee&request_guid=18c6cbdd-8321-4bd1-b5d8-3345ae994706 HTTP/1.1" 200 2282 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83712-0502-ae87-1a4b-0303c54c384b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83712-0502-ae87-1a4b-0303c54c384b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 40 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83712-0502-ae87-1a4b-0303c54c384b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3f5e6334-10a3-4a77-bacf-99f310b54ad9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83712-0502-ae87-1a4b-0303c54c384b?request_guid=3f5e6334-10a3-4a77-bacf-99f310b54ad9 HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83712-0502-ae87-1a4b-0303c54c384b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8c20cea3-1f88-4d45-832f-36c5d7569e85 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83712-0502-ae87-1a4b-0303c54c384b?request_guid=8c20cea3-1f88-4d45-832f-36c5d7569e85 HTTP/1.1" 200 1852 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83712-0502-ae87-1a4b-0303c54c384b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 56f82573-01ce-4388-8709-c5c2dc4cd8e9 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83712-0502-ae87-1a4b-0303c54c384b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83712-0502-ae87-1a4b-0303c54c384b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0da8d0fc-6470-4f09-9ac7-76d2a1880d4e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=56f82573-01ce-4388-8709-c5c2dc4cd8e9&request_guid=0da8d0fc-6470-4f09-9ac7-76d2a1880d4e HTTP/1.1" 200 2283 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83712-0502-ae87-1a4b-0303c54c38af +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83712-0502-ae87-1a4b-0303c54c38af +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 40 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: f85a78a1-e67b-4dc8-8d4e-4854cb50e1e8 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ab1630e6-faf4-4c08-8802-8a00e046dce8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f85a78a1-e67b-4dc8-8d4e-4854cb50e1e8&request_guid=ab1630e6-faf4-4c08-8802-8a00e046dce8 HTTP/1.1" 200 1952 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83712-0502-b1d6-1a4b-0303c54c2aeb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83712-0502-b1d6-1a4b-0303c54c2aeb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 20 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83712-0502-b1d6-1a4b-0303c54c2aeb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6df35ac8-7dfb-4720-8cd9-d8d80ee2764c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83712-0502-b1d6-1a4b-0303c54c2aeb?request_guid=6df35ac8-7dfb-4720-8cd9-d8d80ee2764c HTTP/1.1" 200 2174 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83712-0502-b1d6-1a4b-0303c54c2aeb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 14846bf4-0d57-4e0b-a60b-b312148a2ee2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83712-0502-b1d6-1a4b-0303c54c2aeb?request_guid=14846bf4-0d57-4e0b-a60b-b312148a2ee2 HTTP/1.1" 200 2174 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83712-0502-b1d6-1a4b-0303c54c2aeb'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 16fb996e-344a-4c85-bdcb-5755de57eb1c +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83712-0502-b1d6-1a4b-0303c54c2aeb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83712-0502-b1d6-1a4b-0303c54c2aeb'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1c1bf9cd-6c64-4131-9bf1-2b0ddd190525 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=16fb996e-344a-4c85-bdcb-5755de57eb1c&request_guid=1c1bf9cd-6c64-4131-9bf1-2b0ddd190525 HTTP/1.1" 200 1956 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83712-0502-afee-1a4b-0303c54c0fa3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83712-0502-afee-1a4b-0303c54c0fa3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 20 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPAPPLOG');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 3022ef4b-226f-455b-be31-de83f61aa2f2 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPAPPLOG');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPAPPLOG');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cfcddc88-d5f6-413b-a629-14708f5198b7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3022ef4b-226f-455b-be31-de83f61aa2f2&request_guid=cfcddc88-d5f6-413b-a629-14708f5198b7 HTTP/1.1" 200 2347 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83712-0502-afee-1a4b-0303c54c0fab +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83712-0502-afee-1a4b-0303c54c0fab +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83712-0502-afee-1a4b-0303c54c0fab' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4c0ad351-df69-476e-b0ae-d2af827b29df +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83712-0502-afee-1a4b-0303c54c0fab?request_guid=4c0ad351-df69-476e-b0ae-d2af827b29df HTTP/1.1" 200 1680 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83712-0502-afee-1a4b-0303c54c0fab' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1f848e6f-4c0b-4755-8240-155a896f51de +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83712-0502-afee-1a4b-0303c54c0fab?request_guid=1f848e6f-4c0b-4755-8240-155a896f51de HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83712-0502-afee-1a4b-0303c54c0fab'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: e3e8ade9-eb2e-48ed-a5e6-6e504a0831dc +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83712-0502-afee-1a4b-0303c54c0fab'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83712-0502-afee-1a4b-0303c54c0fab'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f739f50f-8319-4131-8df0-f665a3d33ca9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e3e8ade9-eb2e-48ed-a5e6-6e504a0831dc&request_guid=f739f50f-8319-4131-8df0-f665a3d33ca9 HTTP/1.1" 200 2348 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83712-0502-ae87-1a4b-0303c54c3917 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83712-0502-ae87-1a4b-0303c54c3917 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 3.237s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=06eb31b9-798d-4550-a3e9-be54031757a9 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d5110f6c-6385-4afe-811a-c4f8a29a2afc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=06eb31b9-798d-4550-a3e9-be54031757a9&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=d5110f6c-6385-4afe-811a-c4f8a29a2afc HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT LOGLEVEL,LOGTYPE,MODULEIDNODEID,ODS_AUDIT_ID,ODS_CREATE_ROW_DTM,ODS_SID,G...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: e7778898-a521-4503-a1e6-9b0e6814adc5 +DEBUG:snowflake.connector.cursor:running query [SELECT LOGLEVEL,LOGTYPE,MODULEIDNODEID,ODS_AUDIT_ID,ODS_CREATE_ROW_DTM,ODS_SID,G...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT LOGLEVEL,LOGTYPE,MODULEIDNODEID,ODS_AUDIT_ID,ODS_CREATE_ROW_DTM,ODS_SID,G...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 11ca7751-fd0f-49da-b6e6-7c25e316587f +DEBUG:snowflake.connector.network:socket timeout: 60 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:02:55] "GET /daterange HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:02:55] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:02:55] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:02:55] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:02:55] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:02:55] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:02:55] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:02:55] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:02:56] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:02:56] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:02:56] "GET /js/main.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT targets.id AS targets_id, targets.targetname AS targets_targetname, targets.username AS targets_username, targets.password AS targets_password, targets.account AS targets_account, targets.warehouse AS targets_warehouse, targets."database" AS targets_database, targets.schemaname AS targets_schemaname +FROM targets +INFO:sqlalchemy.engine.Engine:[cached since 46.62s ago] () +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:05] "POST /schemas HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:05] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:05] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:06] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:06] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:06] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:06] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:06] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:06] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:06] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:06] "GET /js/main.js HTTP/1.1" 404 - +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e7778898-a521-4503-a1e6-9b0e6814adc5&request_guid=11ca7751-fd0f-49da-b6e6-7c25e316587f HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83712-0502-b0de-1a4b-0303c54c1dab +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83712-0502-b0de-1a4b-0303c54c1dab +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=127 +INFO:snowflake.connector.cursor:Number of results in first chunk: 182 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83712-0502-b0de-1a4b-0303c54c1dab' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e2a2d2d9-d264-4fc8-be0a-4cb225bebfd3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83712-0502-b0de-1a4b-0303c54c1dab?request_guid=e2a2d2d9-d264-4fc8-be0a-4cb225bebfd3 HTTP/1.1" 200 2193 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83712-0502-b0de-1a4b-0303c54c1dab' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1cf5aa6a-bfd1-47f0-9a16-47a60048e9bd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83712-0502-b0de-1a4b-0303c54c1dab?request_guid=1cf5aa6a-bfd1-47f0-9a16-47a60048e9bd HTTP/1.1" 200 2194 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83712-0502-b0de-1a4b-0303c54c1dab'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: db58e9c7-775c-4d6e-96f5-1b6cccd36b1a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83712-0502-b0de-1a4b-0303c54c1dab'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83712-0502-b0de-1a4b-0303c54c1dab'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 47ba5724-601e-4e9c-ad11-f120f8511159 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=db58e9c7-775c-4d6e-96f5-1b6cccd36b1a&request_guid=47ba5724-601e-4e9c-ad11-f120f8511159 HTTP/1.1" 200 8853 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83713-0502-b1d6-1a4b-0303c54c71cf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83713-0502-b1d6-1a4b-0303c54c71cf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=128 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_0_7 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_0_8 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_0_9 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_0_10 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_0_11 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_0_12 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_0_13 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_0_14 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_0_15 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_1_7 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_1_8 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_1_9 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_1_10 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_1_11 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_1_12 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_1_13 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_1_14 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_1_15 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_2_3 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_2_4 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_2_5 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_2_6 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_2_7 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_2_8 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_2_9 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_2_10 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_2_11 +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_2_12 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_2_13 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_2_14 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_2_15 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_3_0 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_3_4 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_3_5 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_3_6 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_3_7 +DEBUG:snowflake.connector.result_set:result batch 57 has id: data_0_3_8 +DEBUG:snowflake.connector.result_set:result batch 58 has id: data_0_3_9 +DEBUG:snowflake.connector.result_set:result batch 59 has id: data_0_3_10 +DEBUG:snowflake.connector.result_set:result batch 60 has id: data_0_3_11 +DEBUG:snowflake.connector.result_set:result batch 61 has id: data_0_3_12 +DEBUG:snowflake.connector.result_set:result batch 62 has id: data_0_3_13 +DEBUG:snowflake.connector.result_set:result batch 63 has id: data_0_3_14 +DEBUG:snowflake.connector.result_set:result batch 64 has id: data_0_3_15 +DEBUG:snowflake.connector.result_set:result batch 65 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 66 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 67 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 68 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 69 has id: data_0_4_4 +DEBUG:snowflake.connector.result_set:result batch 70 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 71 has id: data_0_4_6 +DEBUG:snowflake.connector.result_set:result batch 72 has id: data_0_4_7 +DEBUG:snowflake.connector.result_set:result batch 73 has id: data_0_4_8 +DEBUG:snowflake.connector.result_set:result batch 74 has id: data_0_4_9 +DEBUG:snowflake.connector.result_set:result batch 75 has id: data_0_4_10 +DEBUG:snowflake.connector.result_set:result batch 76 has id: data_0_4_11 +DEBUG:snowflake.connector.result_set:result batch 77 has id: data_0_4_12 +DEBUG:snowflake.connector.result_set:result batch 78 has id: data_0_4_13 +DEBUG:snowflake.connector.result_set:result batch 79 has id: data_0_4_14 +DEBUG:snowflake.connector.result_set:result batch 80 has id: data_0_4_15 +DEBUG:snowflake.connector.result_set:result batch 81 has id: data_0_5_0 +DEBUG:snowflake.connector.result_set:result batch 82 has id: data_0_5_1 +DEBUG:snowflake.connector.result_set:result batch 83 has id: data_0_5_2 +DEBUG:snowflake.connector.result_set:result batch 84 has id: data_0_5_3 +DEBUG:snowflake.connector.result_set:result batch 85 has id: data_0_5_4 +DEBUG:snowflake.connector.result_set:result batch 86 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 87 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 88 has id: data_0_5_7 +DEBUG:snowflake.connector.result_set:result batch 89 has id: data_0_5_8 +DEBUG:snowflake.connector.result_set:result batch 90 has id: data_0_5_9 +DEBUG:snowflake.connector.result_set:result batch 91 has id: data_0_5_10 +DEBUG:snowflake.connector.result_set:result batch 92 has id: data_0_5_11 +DEBUG:snowflake.connector.result_set:result batch 93 has id: data_0_5_12 +DEBUG:snowflake.connector.result_set:result batch 94 has id: data_0_5_13 +DEBUG:snowflake.connector.result_set:result batch 95 has id: data_0_5_14 +DEBUG:snowflake.connector.result_set:result batch 96 has id: data_0_5_15 +DEBUG:snowflake.connector.result_set:result batch 97 has id: data_0_6_0 +DEBUG:snowflake.connector.result_set:result batch 98 has id: data_0_6_1 +DEBUG:snowflake.connector.result_set:result batch 99 has id: data_0_6_2 +DEBUG:snowflake.connector.result_set:result batch 100 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 101 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 102 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 103 has id: data_0_6_6 +DEBUG:snowflake.connector.result_set:result batch 104 has id: data_0_6_7 +DEBUG:snowflake.connector.result_set:result batch 105 has id: data_0_6_8 +DEBUG:snowflake.connector.result_set:result batch 106 has id: data_0_6_9 +DEBUG:snowflake.connector.result_set:result batch 107 has id: data_0_6_10 +DEBUG:snowflake.connector.result_set:result batch 108 has id: data_0_6_11 +DEBUG:snowflake.connector.result_set:result batch 109 has id: data_0_6_12 +DEBUG:snowflake.connector.result_set:result batch 110 has id: data_0_6_13 +DEBUG:snowflake.connector.result_set:result batch 111 has id: data_0_6_14 +DEBUG:snowflake.connector.result_set:result batch 112 has id: data_0_6_15 +DEBUG:snowflake.connector.result_set:result batch 113 has id: data_0_7_0 +DEBUG:snowflake.connector.result_set:result batch 114 has id: data_0_7_1 +DEBUG:snowflake.connector.result_set:result batch 115 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 116 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 117 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 118 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 119 has id: data_0_7_6 +DEBUG:snowflake.connector.result_set:result batch 120 has id: data_0_7_7 +DEBUG:snowflake.connector.result_set:result batch 121 has id: data_0_7_8 +DEBUG:snowflake.connector.result_set:result batch 122 has id: data_0_7_9 +DEBUG:snowflake.connector.result_set:result batch 123 has id: data_0_7_10 +DEBUG:snowflake.connector.result_set:result batch 124 has id: data_0_7_11 +DEBUG:snowflake.connector.result_set:result batch 125 has id: data_0_7_12 +DEBUG:snowflake.connector.result_set:result batch 126 has id: data_0_7_13 +DEBUG:snowflake.connector.result_set:result batch 127 has id: data_0_7_14 +DEBUG:snowflake.connector.result_set:result batch 128 has id: data_0_7_15 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:sqlalchemy.engine.Engine:SELECT targets.id AS targets_id, targets.targetname AS targets_targetname, targets.username AS targets_username, targets.password AS targets_password, targets.account AS targets_account, targets.warehouse AS targets_warehouse, targets."database" AS targets_database, targets.schemaname AS targets_schemaname +FROM targets +WHERE targets."database" = ? AND targets.schemaname = ? + LIMIT ? OFFSET ? +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +INFO:sqlalchemy.engine.Engine:[generated in 0.18594s] ('PL_PROD', 'PM_TRANS_CL_EPALARM_QLIK_CT_D', 1, 0) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +INFO:sqlalchemy.engine.Engine:SELECT targets.id AS targets_id, targets.targetname AS targets_targetname, targets.username AS targets_username, targets.password AS targets_password, targets.account AS targets_account, targets.warehouse AS targets_warehouse, targets."database" AS targets_database, targets.schemaname AS targets_schemaname +FROM targets +WHERE targets."database" = ? AND targets.schemaname = ? + LIMIT ? OFFSET ? +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +INFO:sqlalchemy.engine.Engine:[cached since 0.4193s ago] ('PL_QA', 'PM_TRANS_CL_EPALARM_QLIK_CT_D', 1, 0) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +INFO:sqlalchemy.engine.Engine:[cached since 31.26s ago] ('get_tablelist', 1, 0) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.connection:__config +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=3ad87931-c534-46b0-b057-c994fe05cdc1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Request guid: b318d6ee-9bf8-41ad-9936-cdeec1057048 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:The lock directory exists. Other process may be updating the cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json.lck +DEBUG:snowflake.connector.ocsp_snowflake:Failed to locate OCSP response cache file. No worry. It will validate with OCSP server: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=XrlL1GhNeKXhxXLTSWSA0gYN15o%3D HTTP/1.1" 200 31044 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 182 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=2g6Ict9ospAjtGkBdojNRKKnQFA%3D HTTP/1.1" 200 910931 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=iKPdz46%2FqiUwrOyhS6p52fw6I4g%3D HTTP/1.1" 200 289133 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=ag1XMKMHxXMKYw2DUV0Nosn6lS0%3D HTTP/1.1" 200 121969 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=3ad87931-c534-46b0-b057-c994fe05cdc1&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=b318d6ee-9bf8-41ad-9936-cdeec1057048 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 189 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 187 +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 181 +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 178 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.cursor:executing SQL/command +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +INFO:snowflake.connector.cursor:query: [select distinct(table_name) from information_schema.columns where table_schema =...] +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.cursor:Request id: 2f6372c1-5750-429f-8a8b-773ef11c5d73 +DEBUG:snowflake.connector.cursor:running query [select distinct(table_name) from information_schema.columns where table_schema =...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select distinct(table_name) from information_schema.columns where table_schema =...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: dd26c10b-6750-4449-bd61-2782f304a124 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=SHI14QrbyaD42yIZyn5KOl%2BmXS0%3D HTTP/1.1" 200 1669246 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=hFwpb3pK0oai27yksPxGzBMleZY%3D HTTP/1.1" 200 429380 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 176 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 182 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 184 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 370 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 373 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 368 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_7 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=mYE%2Bnc638gSrsBW%2FcvAP10LEn84%3D HTTP/1.1" 200 3381411 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_0_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=v%2FGHZZlIy7%2BKRKEv2t3r05Y5Cuc%3D HTTP/1.1" 200 6620753 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 364 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 373 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 740 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 735 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 738 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 737 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 739 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 743 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1463 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1461 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_0_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=5U4uLq5Jv0uW2X2g3QaZbA730Ig%3D HTTP/1.1" 200 13234607 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1432 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_9 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1459 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1472 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_0_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=Z1pTzcjLEU4AyZloT%2Bv2uIWoOW4%3D HTTP/1.1" 200 17027198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1856 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2f6372c1-5750-429f-8a8b-773ef11c5d73&request_guid=dd26c10b-6750-4449-bd61-2782f304a124 HTTP/1.1" 200 1930 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83713-0502-b1d6-1a4b-0303c54c72c3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83713-0502-b1d6-1a4b-0303c54c72c3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 15 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83713-0502-b1d6-1a4b-0303c54c72c3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bad77041-9327-4da8-bf3c-d2d575ba25d3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1857 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83713-0502-b1d6-1a4b-0303c54c72c3?request_guid=bad77041-9327-4da8-bf3c-d2d575ba25d3 HTTP/1.1" 200 1853 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83713-0502-b1d6-1a4b-0303c54c72c3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e99b89cb-0092-4458-9478-6cea0a53756c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1867 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1896 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83713-0502-b1d6-1a4b-0303c54c72c3?request_guid=e99b89cb-0092-4458-9478-6cea0a53756c HTTP/1.1" 200 1853 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83713-0502-b1d6-1a4b-0303c54c72c3'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: fbbd0d8d-cb82-4fa7-a805-bb08bc490347 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83713-0502-b1d6-1a4b-0303c54c72c3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83713-0502-b1d6-1a4b-0303c54c72c3'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: dff17e6b-21da-44fb-bae0-53ae22373139 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=fbbd0d8d-cb82-4fa7-a805-bb08bc490347&request_guid=dff17e6b-21da-44fb-bae0-53ae22373139 HTTP/1.1" 200 1932 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83713-0502-ae87-1a4b-0303c54c818b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83713-0502-ae87-1a4b-0303c54c818b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 15 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2 +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:24] "POST /tables HTTP/1.1" 200 - +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 13 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:24] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:24] "GET /static/css/style.css HTTP/1.1" 304 - +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_10 +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 13 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_10 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 13, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1852 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_0_10?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=G2eh7hObsI%2FIjjdvCVdsQu8E6bI%3D HTTP/1.1" 200 17032625 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1845 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1884 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:25] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1867 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1853 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1889 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:25] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1853 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1903 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:25] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:25] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1863 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:25] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_11 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:26] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:26] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:26] "GET /js/main.js HTTP/1.1" 404 - +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 25 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_11 +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 25 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 25, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_11 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1870 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_0_11?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=jeOd%2Fd9bWISbHjmfYNnchmThpZ4%3D HTTP/1.1" 200 16958474 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1855 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1852 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1930 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1905 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_12 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:29] "POST /submit HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:29] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:30] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 50 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 50 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_12 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 50, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1831 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1900 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:30] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_0_12?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=6KDOnHmEuZt4gsowAN5wD%2FD%2F8u4%3D HTTP/1.1" 200 16925071 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1866 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1884 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:31] "GET /static/css/style.css HTTP/1.1" 304 - +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1867 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:31] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1920 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:32] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1876 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:32] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1875 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:32] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1878 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:32] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:03:32] "GET /js/main.js HTTP/1.1" 404 - +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1867 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1841 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1862 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1863 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1908 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_13 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1898 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1901 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1874 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1899 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1896 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1870 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1995 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 2011 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1979 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1992 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1994 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1972 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 2007 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 2025 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1983 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 2001 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1991 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1990 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 2013 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1958 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_0_13?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=hZB3liQymUzUWKn3WADmGUo%2BZGY%3D HTTP/1.1" 200 16957996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 2017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 2003 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_14 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_10 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_10 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_14 +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_14 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1997 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1931 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1967 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1978 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1977 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1970 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1970 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1994 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1973 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1982 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1971 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1977 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1966 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1999 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1970 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1997 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1972 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1962 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 2002 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1956 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1977 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1974 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_0_14?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=kt%2BIgK2p1ZFcPci%2BktTjEfNKHVA%3D HTTP/1.1" 200 16795290 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1951 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1946 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1944 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1946 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1973 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1952 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_11 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1937 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1946 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1969 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_15 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_15 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_15 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1945 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1951 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1972 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1960 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1933 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1949 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1936 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1957 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1946 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1949 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1946 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1957 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1966 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1979 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1974 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1961 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1974 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_0_15?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=dLgeusHlI7Sq0BE4vL1CwRgC8V8%3D HTTP/1.1" 200 9589738 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 2043 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 2070 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 2064 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 2048 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 2063 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 2063 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 2056 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 2049 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 2059 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 2065 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 2068 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_12 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_12 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2053 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2063 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2074 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2055 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2070 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2065 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2055 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2059 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2053 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2074 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 2063 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 2052 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 2052 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 2069 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 2014 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 2014 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1971 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1991 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1974 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1989 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1989 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 2002 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 2009 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1962 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=7quuCKlFumk5z4iVVm08K0yDLhc%3D HTTP/1.1" 200 32204 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1966 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 2018 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 2021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1989 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=hQ%2FYks2kUnhKbMiOdV2huBZe2jA%3D HTTP/1.1" 200 122866 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_13 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_13 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_13 +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1986 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_15 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_15 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 47 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1938 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1931 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1867 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1951 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1896 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_14 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_14 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 66 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_14 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 66 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 66, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1882 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1919 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1932 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1921 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1923 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1892 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1999 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1979 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1996 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 2002 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1978 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1994 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 2011 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1995 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1982 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 2023 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1996 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 2002 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1978 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=1BQq7%2FEWfdEOeBBszvlh6IUcTLI%3D HTTP/1.1" 200 288787 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1991 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 2013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 2014 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 2031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 1931 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 65, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 47 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 47, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2065 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1990 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=wDNJdexrMuqD2uGAhzg4W0no0Oc%3D HTTP/1.1" 200 485258 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1937 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 2050 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 2024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 2065 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 2034 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1965 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 182 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 179 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 188 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 191 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 186 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 186 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 189 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 370 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 367 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=PMj4%2F4eGJZ9Yah9mxa%2BNVf0EDrQ%3D HTTP/1.1" 200 1010528 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 358 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 365 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 352 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 370 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 736 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 750 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 763 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_8 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 729 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 747 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_1_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=m%2Bv%2FxS4zaLPggkwaim7FFAs5OIQ%3D HTTP/1.1" 200 13229914 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1459 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1444 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1450 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1489 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_9 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=tC%2FhXqahHifctJIVYUwtW9W8ruw%3D HTTP/1.1" 200 1736959 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=fDT37J%2BDL26LKsFzTRZ3cKxSeCc%3D HTTP/1.1" 200 3311768 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_1_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=OrLRzG93oAHE0sfsV1HcTPkXImg%3D HTTP/1.1" 200 6813874 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 13 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_9 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 50 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_8 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_1_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=%2BDuh8BB%2Fj6zXhQb2%2FElWpPjOzvE%3D HTTP/1.1" 200 16826457 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 26 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 63 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1480 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1867 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1858 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_10 +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 13 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 13, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1921 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_10 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1865 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1872 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_1_10?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=1EPYCxKyhMEfsIyWiXAkkl%2FyO90%3D HTTP/1.1" 200 16860965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1853 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1864 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1852 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1854 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1889 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_11 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_11 +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 26 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_11 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 26, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1864 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_1_11?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=kx0xa67wYGQnwZqh9dc1Hlz5DR0%3D HTTP/1.1" 200 16826874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1860 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1861 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1886 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 50 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_12 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 50, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1893 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_12 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1862 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1890 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1876 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1890 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1881 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1899 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1866 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1888 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1927 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1862 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1857 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1925 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1878 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1865 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1887 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1873 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1870 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1886 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1891 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1907 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1895 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1881 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1877 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1877 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1885 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_1_12?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=UTiWOkT85BqmrvNGMaQOE2g%2Btz8%3D HTTP/1.1" 200 17032958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1895 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_13 +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_13 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 63 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 63, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_13 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1909 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1873 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1880 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1909 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1878 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1931 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1905 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1903 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1956 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1963 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1997 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1957 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1980 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1985 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1912 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1902 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1903 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1907 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1882 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1910 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_1_13?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=TOjeOY%2FPnEAdnQ5CxiyeEGeWUgI%3D HTTP/1.1" 200 16966628 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1938 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1944 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 2013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1964 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_14 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_11 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_11 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 63 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_11 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_14 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_14 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_1_14?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=EDt832iwg8quZ1aAyQfMM7KVDgY%3D HTTP/1.1" 200 16923460 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_13 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_13 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_14 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_14 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 63 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_14 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_10 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_10 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1948 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1969 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_15 +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_15 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 63 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 63, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_15 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1962 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1986 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1962 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1970 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1944 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1988 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1971 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1949 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1956 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1959 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1925 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1918 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1884 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1879 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1878 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1935 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1895 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1900 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1917 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1914 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1915 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_1_15?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=j4otUzd9MT6uDHsruz4Ke5ayZus%3D HTTP/1.1" 200 5369596 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1905 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_12 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_12 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 63 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_12 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 63 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 63, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1906 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1871 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1904 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1908 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1949 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1889 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1934 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_15 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_15 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 27 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1884 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_15 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1884 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1928 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1862 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1906 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1914 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1885 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1916 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1878 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1878 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=wUxCAyWwLaVQ%2BUsN9exnkr7PvhQ%3D HTTP/1.1" 200 31623 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1892 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1924 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1994 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1947 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=gGlBB08QvGiYBF3OT2iSMNBE3zk%3D HTTP/1.1" 200 125445 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1946 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1930 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1930 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1931 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1930 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 63 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 63, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1951 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1901 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=zODbJ%2Fi8tOdtKC%2Beu2KMwr%2F3jJU%3D HTTP/1.1" 200 240036 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1920 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1927 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 2024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 2013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 2022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1951 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1945 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 27 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 27, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2017 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1877 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1879 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1959 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2022 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1996 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1997 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1944 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1923 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1871 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 2073 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1993 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1976 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1967 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 2013 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 2032 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1902 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1933 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1988 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1857 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 2017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1956 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=WIbPgPqTWw1GVYgDDjKt1Ny3BG4%3D HTTP/1.1" 200 493909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 664 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 182 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 190 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 187 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 184 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 187 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 186 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 192 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 365 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 379 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_7 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 358 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 366 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 375 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 744 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 739 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 752 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_2_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=fXA%2BM3fZnvqcNorfanb9HeILuKc%3D HTTP/1.1" 200 6825711 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=ytla5NiDlOh%2BxIv4Rjzuxf4GiCc%3D HTTP/1.1" 200 1724089 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=L1qa5aTpqRZqy91PsUxbjV9fMLI%3D HTTP/1.1" 200 1029048 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=YHgmMSJYs14%2FWLAcTY1OTzQRI%2FA%3D HTTP/1.1" 200 3386468 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 26 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_8 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 733 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_2_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=1Tx96bJaVxuyWQSquZlWJEpqT%2Bg%3D HTTP/1.1" 200 13238322 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 739 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1478 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1477 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1450 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1470 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_9 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1497 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1463 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1898 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_2_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=NnXIaMoP7eE8k8t%2Bb7PijpuFW2w%3D HTTP/1.1" 200 16935342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1880 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_10 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_10 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_2_10?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=wFdS7WLg0PIQUZvB3E448EboVMA%3D HTTP/1.1" 200 16922810 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 13 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 13, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1878 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_11 +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 26 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 26, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1916 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_11 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1871 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_2_11?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=nMz7rcnTAWelK2u8nTgXqEIC1Uk%3D HTTP/1.1" 200 16972472 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1865 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1840 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1864 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1868 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 53 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 53 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_12 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 53, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1858 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1880 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_2_12?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=NxnrSJ50hw33Y0LuHk5NueIvQDM%3D HTTP/1.1" 200 17033377 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1867 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1858 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 2036 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 2019 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 2028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 2042 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 2016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 2032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 2012 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 439a1297-e2b4-43f7-be85-f57125ec63d6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=439a1297-e2b4-43f7-be85-f57125ec63d6 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_9 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_9 +DEBUG:snowflake.connector.connection:Session is closed +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 2026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 2017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 2021 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 41 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 42 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_13 +DEBUG:snowflake.connector.result_set:user began consuming result batch 42 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_13 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_13 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2031 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2034 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2030 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2011 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2036 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2041 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2018 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2022 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2032 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2028 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 2012 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 2002 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_10 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1985 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_10 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1980 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1968 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1940 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1978 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1991 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1966 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1963 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 2000 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1970 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1982 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_2_13?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=h4nnv%2FtrxZqxkzjN5H7Az5DVKRI%3D HTTP/1.1" 200 16804843 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1944 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 42 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 43 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_14 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_14 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_14 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 43 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1962 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1973 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1971 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1957 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1985 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1996 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_11 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1965 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_11 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 63 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1982 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_11 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1951 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1979 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1955 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1993 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1961 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1990 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1972 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1936 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1964 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1986 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_2_14?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=uv1BKAVwfMoxIqJ7%2FDQ2tFQdlNU%3D HTTP/1.1" 200 16848725 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1948 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1948 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1955 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 43 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 44 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_15 +DEBUG:snowflake.connector.result_set:user began consuming result batch 44 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_15 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 63 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 63, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1974 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_15 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1985 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1970 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1961 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1970 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1988 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1967 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1983 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1934 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1978 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1994 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1983 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1958 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1973 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1995 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1979 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1968 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1966 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1974 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1968 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1968 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_2_15?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=TtHzdjKlU1kIwqRZq2GelkyExA8%3D HTTP/1.1" 200 4885284 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1910 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 44 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 45 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_12 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 64 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_12 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_0 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 45 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 64 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 64, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1914 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1864 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1889 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1922 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1879 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1889 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1930 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1924 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1924 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1900 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1920 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1913 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1929 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1921 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1866 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1896 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1927 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1905 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1931 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1893 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1926 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1911 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_3_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=xLicGB0T9oZ%2FbyCNLVI7MhGUIjQ%3D HTTP/1.1" 200 29989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1940 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1918 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1922 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1900 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_15 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_15 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 24 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1948 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1927 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1937 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1882 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 45 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 46 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_13 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_13 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_13 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 46 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1919 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1907 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1931 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1993 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1971 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1976 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1991 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1981 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1983 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1968 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1980 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1951 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1966 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1976 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1960 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1983 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1959 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1980 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_3_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=SWGTkjo9FJDyttBbGCUfk7%2BBEiQ%3D HTTP/1.1" 200 127142 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 2009 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1996 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 46 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 47 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_3_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=87NJUC3Y8ymoF7jiDortX1I0nm0%3D HTTP/1.1" 200 243549 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_14 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_14 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_14 +DEBUG:snowflake.connector.result_set:user began consuming result batch 47 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1989 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 2023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 2021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 2010 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 2031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 2017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 2019 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 2025 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 47 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 48 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 48 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 24 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 24, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2018 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1987 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2049 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1908 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1920 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1927 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2034 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1952 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1924 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1951 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1930 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1971 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1977 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1938 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 2030 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1871 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1901 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1940 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 2013 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1994 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1953 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1879 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.result_set:user finished consuming result batch 48 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 49 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 49 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 175 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 49 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 50 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 50 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 190 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 184 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 179 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 50 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 51 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_4 with existing session +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_5 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 51 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 179 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 187 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 184 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 188 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 369 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 380 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 51 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 52 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_7 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_3_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=zPxQt5m8Ou3ndKHNlrN1AXKA98A%3D HTTP/1.1" 200 499890 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 52 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_7 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 372 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 366 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 373 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_3_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=WMTO95IPFcE%2BSIwOKaJkfnz1788%3D HTTP/1.1" 200 6623534 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 739 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 737 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 747 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 52 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 53 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_3_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=QxBUksiBGY3glvuDuM94M8kVG2Y%3D HTTP/1.1" 200 1861995 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_3_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=wwnnt%2FO0ZuyVWl003EYEcnY50Ic%3D HTTP/1.1" 200 3441606 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_3_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=dxFoWNHW%2FMnLz1bl0smDrP2X5e8%3D HTTP/1.1" 200 852283 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 25 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_8 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 53 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 751 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 739 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_3_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=nhYmkB%2FXjDb1FdcJq7y%2B2mcSpfE%3D HTTP/1.1" 200 13211211 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1481 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1510 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 53 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 54 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_9 +DEBUG:snowflake.connector.result_set:user began consuming result batch 54 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_9 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1916 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_9 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1906 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_3_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=rwXaQ3V7Er9o%2Fu3dDo9jRKAHZTU%3D HTTP/1.1" 200 16971619 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1897 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 54 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 55 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_10 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_10 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_3_10?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=OKMzJUM967dCmHigESQa1ee7Eg4%3D HTTP/1.1" 200 16932513 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 50 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 63 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_10 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 13 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 55 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 13, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1861 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1864 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1865 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 55 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 56 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_11 +DEBUG:snowflake.connector.result_set:user began consuming result batch 56 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 25 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 25, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1842 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_11 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_11 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1883 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_3_11?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=5GNTFmiC7d325D0ZpWsgDP5fJuU%3D HTTP/1.1" 200 17000086 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1859 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1867 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1861 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1898 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 56 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 57 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 57 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 50 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 50, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1921 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_12 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1872 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_3_12?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=UCtNIZivIQm53fw53yapExtWAq4%3D HTTP/1.1" 200 16927337 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1866 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1867 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1858 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1851 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1880 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 57 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 58 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_13 +DEBUG:snowflake.connector.result_set:user began consuming result batch 58 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_13 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 63 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 63, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_13 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1882 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1891 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1919 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1910 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1884 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1884 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1883 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1881 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1871 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1907 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1946 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1994 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1960 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1996 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1956 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1978 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1936 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1962 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_3_13?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=yZRb4vl%2Bp0jxPhzbN%2FugmwD8Kug%3D HTTP/1.1" 200 16847983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1951 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1951 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 2053 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 2058 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 2085 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 2063 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 2071 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 2073 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 2076 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 2073 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 2100 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 2069 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 58 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 59 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_14 +DEBUG:snowflake.connector.result_set:user began consuming result batch 59 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_14 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_14 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2083 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2082 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2066 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2070 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2078 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2067 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2063 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1963 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1959 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1991 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1962 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1972 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1961 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1964 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1956 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1958 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1951 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1948 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1960 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1959 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1961 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1979 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_3_14?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=8tDXpLX3xdHyer8j66JhSn7t6tU%3D HTTP/1.1" 200 16830589 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1971 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 59 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 60 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_15 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_12 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_12 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_15 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_15 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_13 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_13 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_13 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_3_15?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=t5QQXYkDbid50bY%2FKeJdhrKAnXY%3D HTTP/1.1" 200 6775999 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_14 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_14 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_14 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_11 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_11 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_15 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 64 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_15 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_11 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 33 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_15 +DEBUG:snowflake.connector.result_set:user began consuming result batch 60 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 64 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 64, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1938 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 1948 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 60 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 61 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 61 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1980 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1991 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1995 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1970 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1995 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1993 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1971 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1994 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1981 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1989 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1998 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1972 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1980 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1966 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 2001 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1981 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1996 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1998 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 2010 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_4_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=IWgtwj%2Ft9Q7bwrS9nJ4D2PadEyI%3D HTTP/1.1" 200 33914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1962 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1984 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 61 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 62 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1981 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2015 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_4_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=qM6udgcZrC%2Brz%2BwXBK6uLLtolbU%3D HTTP/1.1" 200 128849 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2009 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1976 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1991 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1946 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1956 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 2034 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1989 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 62 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 63 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 63 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1999 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1978 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1981 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1968 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1985 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1978 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1981 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 2008 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1962 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1985 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1998 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1985 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1999 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 2008 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 2001 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1969 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 2024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 2000 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 2002 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_4_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=LXUTIbN8YLIMSA1cfdJRA6PYr2A%3D HTTP/1.1" 200 239020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 2017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 2019 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 2031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1998 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 63 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 64 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_3 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 64 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 33 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 33, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1914 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_4_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=FWdnspYlbVJWFr0IlEYX5oW%2Bp5M%3D HTTP/1.1" 200 501251 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 2031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1845 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1951 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 2024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 2004 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 2016 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 2085 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 2083 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1942 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1966 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1685 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 64 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 65 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 65 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 189 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 65 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 66 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 66 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 190 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 184 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 187 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 188 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 66 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 67 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 67 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 181 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 178 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 181 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 367 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 354 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 67 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 68 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_4_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=N5HDr52EzFE%2BH1PW9VGYSYuF%2BEs%3D HTTP/1.1" 200 940524 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 68 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 380 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 387 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 364 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 743 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 739 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 737 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 68 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 69 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_8 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 69 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_8 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 729 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 731 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_4_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=7oQvbQcBF%2FsdhbtwqAqfzby5e5E%3D HTTP/1.1" 200 13150925 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 733 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1442 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1466 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1436 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 69 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 70 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_9 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_4_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=SLYEIY%2Bf3sNltoPLc3lyTRZa4oI%3D HTTP/1.1" 200 3443642 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_4_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=LNAGH9OhH7TwTsLA3M74z1goGuA%3D HTTP/1.1" 200 1735604 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_4_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=%2F8E53sAEcmbm9xVcQS0HYUL%2F2fA%3D HTTP/1.1" 200 6615583 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 50 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_9 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_4_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=9WCHth6l5MVRC5G%2B8MMpayY1p%2F0%3D HTTP/1.1" 200 16812995 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 70 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1462 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1473 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1863 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1870 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 70 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 71 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_10 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_10 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_4_10?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=E7T0kevkT83IoCAwAMaUSINwsfk%3D HTTP/1.1" 200 17022423 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 13 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 71 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 13, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1865 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1861 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1866 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1853 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 71 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 72 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_11 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_11 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_11 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_4_11?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=qp1GyHCYl3fbNy1uROsZM54%2BcZ8%3D HTTP/1.1" 200 16922262 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 25 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 72 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 25 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 25, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1865 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1842 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1851 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1877 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 72 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 73 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_12 +DEBUG:snowflake.connector.result_set:user began consuming result batch 73 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 50 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_12 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 50, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1892 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_12 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1919 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_4_12?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=OjK%2FM0uGAgaMnjE3knfBBd7XL8k%3D HTTP/1.1" 200 16911880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1930 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1866 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1931 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1914 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 73 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 74 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_13 +DEBUG:snowflake.connector.result_set:user began consuming result batch 74 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_13 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1896 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_13 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1946 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1987 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1971 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1971 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1973 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2005 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1973 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1983 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1968 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1974 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1976 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1981 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1972 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1965 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1973 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1980 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1944 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1972 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1995 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1975 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1959 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 2005 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1994 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1982 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_4_13?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=C7OLk1uibnvPZ8YZClhE%2BK7L2CM%3D HTTP/1.1" 200 16825856 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1969 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 2015 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1989 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 74 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 75 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_14 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_10 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_10 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_14 +DEBUG:snowflake.connector.result_set:user began consuming result batch 75 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_14 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1983 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_4_14?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=rvaa8mVqpqpzS4fnoD%2BKPucUN%2BA%3D HTTP/1.1" 200 17003023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1966 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1992 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_13 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_13 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1990 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_13 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 2030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 2023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 2009 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1948 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 75 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 76 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_15 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_15 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_15 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_11 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_11 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_11 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 76 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1974 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1939 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1945 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1935 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1966 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1953 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1956 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1948 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1966 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1933 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1967 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1932 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1964 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_4_15?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=Iq7yCHAri2%2BggoNHv%2BTjg4xO9qY%3D HTTP/1.1" 200 8928149 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1937 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1948 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1944 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1947 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1957 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1964 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1966 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_12 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 61 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 2061 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 2051 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 2052 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 2054 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 2074 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 2053 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 2056 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 2034 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 2054 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 2016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1972 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 76 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 77 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 77 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 61 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 61, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1954 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2013 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1975 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2007 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1966 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2004 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1987 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1999 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1982 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1967 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1976 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 2009 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1950 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1988 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1972 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1992 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1953 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1997 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1959 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1982 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_5_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=qjg8txQWV7NC2qxykXPdth4aZg8%3D HTTP/1.1" 200 32432 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1987 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1968 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1973 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1958 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1959 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1961 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1965 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1984 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 77 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 78 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 78 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1976 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_5_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=1YDJbJrgsr%2B6t2zX0jWX26AhQ04%3D HTTP/1.1" 200 123709 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2009 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2019 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 2000 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 2008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 2016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 2001 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 2020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 2019 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 2002 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 2018 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 2019 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 2013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 2012 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1980 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_15 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1904 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 39 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1953 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1937 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 78 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 79 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_14 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_14 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_14 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 79 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 62, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1942 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1918 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1908 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1891 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1918 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1993 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1971 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1998 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1986 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1984 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 2006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1982 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_5_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=aRGQq%2Bb%2BDPOufAYwqVylFIAQKLg%3D HTTP/1.1" 200 240414 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1978 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1997 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1992 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 2007 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 2005 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1996 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1998 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 2024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1962 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 1939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 1906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 1920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 1884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 1929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 1923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 1930 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 1891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 1910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 1940 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 79 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 80 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 80 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 39 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 39, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1901 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_5_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=VTyjVmoX97fRMsBEtWKSRLWe%2Fo4%3D HTTP/1.1" 200 443199 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1937 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1931 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1944 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 2050 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1954 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 2047 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1950 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 2011 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 2047 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1931 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 2003 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1975 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1974 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1136 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 80 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 81 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 81 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 190 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 81 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 82 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 82 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 173 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 186 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 181 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 82 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 83 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 83 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 182 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 183 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 185 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 192 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 364 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 367 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_5_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=sSbzacpSiKfXoLDkNoAawSeV3Yw%3D HTTP/1.1" 200 938125 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 83 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 84 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 84 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 369 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 364 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 351 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 367 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 740 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 743 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:user finished consuming result batch 84 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 85 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_8 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 85 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_8 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 730 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 748 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 729 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_5_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=d0Gw3I3GWjfWqRcmQfUeFEhuc2Q%3D HTTP/1.1" 200 13115620 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1485 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1463 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1471 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 85 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 86 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_9 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\main.py', reloading +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_5_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=%2F6VopB70Bwh5s1MQDcmB5acuhxk%3D HTTP/1.1" 200 6835070 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_5_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=l4MaRAe8zNqg%2FhKmqV%2BfsBlCnY0%3D HTTP/1.1" 200 1833085 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_5_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=DPPHjD0STuC%2FdR34JPSk3C6wBXI%3D HTTP/1.1" 200 3398060 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_9 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 86 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 40, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1913 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 13 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83712-0502-b0de-1a4b-0303c54c1dab_0/main/data_0_5_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103398&Signature=k3GHCg%2FCeLr7OaGxHoa0fMsesZE%3D HTTP/1.1" 200 16817803 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 26 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 50 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 62 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_9 +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 10.4s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 10.41s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 10.41s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=d43b780e-9553-455e-ba09-fdcafbcd95e4 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5841c782-9a28-416f-a7cb-992709797fea +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2155634693536 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2155634693536 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2155635028272 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2155635028272 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2155635028272 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2155635028272 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2155634693536 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2155634693536 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=d43b780e-9553-455e-ba09-fdcafbcd95e4&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=5841c782-9a28-416f-a7cb-992709797fea HTTP/1.1" 200 1556 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_PROD, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_PROD_QLIK_LOAD_WH, role=None, request_id=3d78c7e2-4bcc-468a-ac1b-08b5ac91bca4 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 17c30bd2-1df0-4c43-84ea-9dd2a815061e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=3d78c7e2-4bcc-468a-ac1b-08b5ac91bca4&databaseName=PL_PROD&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_PROD_QLIK_LOAD_WH&request_guid=17c30bd2-1df0-4c43-84ea-9dd2a815061e HTTP/1.1" 200 1560 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00148s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: e2fd8da9-8c75-476f-b762-cf100aab3d6c +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: dd5faede-ed48-455f-9196-891ec7f58cfe +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e2fd8da9-8c75-476f-b762-cf100aab3d6c&request_guid=dd5faede-ed48-455f-9196-891ec7f58cfe HTTP/1.1" 200 2763 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8371a-0502-af26-1a4b-0303c54e63bf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8371a-0502-af26-1a4b-0303c54e63bf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8371a-0502-af26-1a4b-0303c54e63bf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fe89d9e8-ffa1-4afb-8758-0be5e68d9201 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8371a-0502-af26-1a4b-0303c54e63bf?request_guid=fe89d9e8-ffa1-4afb-8758-0be5e68d9201 HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8371a-0502-af26-1a4b-0303c54e63bf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: deeaa240-415a-4118-9fb0-cca768250ddb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8371a-0502-af26-1a4b-0303c54e63bf?request_guid=deeaa240-415a-4118-9fb0-cca768250ddb HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8371a-0502-af26-1a4b-0303c54e63bf'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 3ed98a9a-6c45-444e-8588-f5e618101249 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8371a-0502-af26-1a4b-0303c54e63bf'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8371a-0502-af26-1a4b-0303c54e63bf'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b0745a38-f4d2-4e22-b6e7-c3e81600d890 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3ed98a9a-6c45-444e-8588-f5e618101249&request_guid=b0745a38-f4d2-4e22-b6e7-c3e81600d890 HTTP/1.1" 200 2765 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8371a-0502-ae87-1a4b-0303c54e71eb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8371a-0502-ae87-1a4b-0303c54e71eb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 85 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 15 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 11 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 12 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 12 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 8e0d6ad2-c080-41b2-9bb8-2fceeed1faff +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: adb82109-5ae0-458c-9251-52ef9cb12283 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=8e0d6ad2-c080-41b2-9bb8-2fceeed1faff&request_guid=adb82109-5ae0-458c-9251-52ef9cb12283 HTTP/1.1" 200 2503 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8371a-0502-b1d6-1a4b-0303c54e5617 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8371a-0502-b1d6-1a4b-0303c54e5617 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8371a-0502-b1d6-1a4b-0303c54e5617' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e8b18ae9-8955-44d2-955c-e01d9c0b9666 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8371a-0502-b1d6-1a4b-0303c54e5617?request_guid=e8b18ae9-8955-44d2-955c-e01d9c0b9666 HTTP/1.1" 200 2163 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8371a-0502-b1d6-1a4b-0303c54e5617' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7dc28857-8db3-47bb-b645-e8fb1fc8bcd2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8371a-0502-b1d6-1a4b-0303c54e5617?request_guid=7dc28857-8db3-47bb-b645-e8fb1fc8bcd2 HTTP/1.1" 200 2165 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8371a-0502-b1d6-1a4b-0303c54e5617'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: dd1be1bb-9d38-410f-ae65-6df0aba48cf7 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8371a-0502-b1d6-1a4b-0303c54e5617'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8371a-0502-b1d6-1a4b-0303c54e5617'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2fd19e4a-9963-4c14-9c58-e69a2dbb33ef +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=dd1be1bb-9d38-410f-ae65-6df0aba48cf7&request_guid=2fd19e4a-9963-4c14-9c58-e69a2dbb33ef HTTP/1.1" 200 2509 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8371a-0502-afee-1a4b-0303c54e391f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8371a-0502-afee-1a4b-0303c54e391f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 65 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: eb963784-5835-4216-898a-a00f72cb1eff +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','SDR');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','SDR');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6e2ce07a-1b67-4bbb-8fe9-538f0730404e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=eb963784-5835-4216-898a-a00f72cb1eff&request_guid=6e2ce07a-1b67-4bbb-8fe9-538f0730404e HTTP/1.1" 200 2811 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8371a-0502-b0de-1a4b-0303c54e4827 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8371a-0502-b0de-1a4b-0303c54e4827 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8371a-0502-b0de-1a4b-0303c54e4827' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b99c074e-a51b-49d2-93a1-6121eed29ceb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8371a-0502-b0de-1a4b-0303c54e4827?request_guid=b99c074e-a51b-49d2-93a1-6121eed29ceb HTTP/1.1" 200 1675 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8371a-0502-b0de-1a4b-0303c54e4827' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1c5bb3ce-19d2-4ac4-9621-c24b72be30da +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8371a-0502-b0de-1a4b-0303c54e4827?request_guid=1c5bb3ce-19d2-4ac4-9621-c24b72be30da HTTP/1.1" 200 1675 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8371a-0502-b0de-1a4b-0303c54e4827'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 2e880ea6-6d20-40d5-972c-98fe3cac358c +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8371a-0502-b0de-1a4b-0303c54e4827'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8371a-0502-b0de-1a4b-0303c54e4827'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6694a014-7cdc-4c16-8777-26e08652df0b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2e880ea6-6d20-40d5-972c-98fe3cac358c&request_guid=6694a014-7cdc-4c16-8777-26e08652df0b HTTP/1.1" 200 2812 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8371a-0502-af26-1a4b-0303c54e646f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8371a-0502-af26-1a4b-0303c54e646f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 3.224s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=8a28fc76-8854-43eb-9940-b337b32befd7 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f27e6096-5c5a-448f-b0aa-8a0bebce1995 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=8a28fc76-8854-43eb-9940-b337b32befd7&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=f27e6096-5c5a-448f-b0aa-8a0bebce1995 HTTP/1.1" 200 1557 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT AVERAGERECCONF,LATENCYHISTOGRAM1,ODS_ROW_PROCESS_DTM,PARENTID,ODS_EXP_ROW...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: f0858359-2541-4410-9afd-0603ffeaf76f +DEBUG:snowflake.connector.cursor:running query [SELECT AVERAGERECCONF,LATENCYHISTOGRAM1,ODS_ROW_PROCESS_DTM,PARENTID,ODS_EXP_ROW...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT AVERAGERECCONF,LATENCYHISTOGRAM1,ODS_ROW_PROCESS_DTM,PARENTID,ODS_EXP_ROW...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d6fc5bb1-5de6-4f5b-bc37-b66944503af1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f0858359-2541-4410-9afd-0603ffeaf76f&request_guid=d6fc5bb1-5de6-4f5b-bc37-b66944503af1 HTTP/1.1" 200 6504 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8371a-0502-ae87-1a4b-0303c54e72bb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8371a-0502-ae87-1a4b-0303c54e72bb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=74 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8371a-0502-ae87-1a4b-0303c54e72bb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c49c5b14-9eea-4d2f-a99d-73e66ba74dfb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8371a-0502-ae87-1a4b-0303c54e72bb?request_guid=c49c5b14-9eea-4d2f-a99d-73e66ba74dfb HTTP/1.1" 200 2275 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8371a-0502-ae87-1a4b-0303c54e72bb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: faa2f930-a08a-438f-acba-28fa6bd43877 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8371a-0502-ae87-1a4b-0303c54e72bb?request_guid=faa2f930-a08a-438f-acba-28fa6bd43877 HTTP/1.1" 200 2274 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8371a-0502-ae87-1a4b-0303c54e72bb'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 7c2f3636-996e-4357-86ad-e2d4fd1c06e8 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8371a-0502-ae87-1a4b-0303c54e72bb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8371a-0502-ae87-1a4b-0303c54e72bb'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 293c55c4-9576-49a3-898e-c03a4dbf1c55 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7c2f3636-996e-4357-86ad-e2d4fd1c06e8&request_guid=293c55c4-9576-49a3-898e-c03a4dbf1c55 HTTP/1.1" 200 6506 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8371a-0502-b0de-1a4b-0303c54e48ef +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8371a-0502-b0de-1a4b-0303c54e48ef +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=74 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_0_7 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_0_8 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_1_7 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_1_8 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_2_3 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_2_4 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_2_5 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_2_6 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_2_7 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_2_8 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_2_9 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_3_0 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_3_4 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_3_5 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_3_6 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_3_7 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_3_8 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_4_4 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_4_6 +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_4_7 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_4_8 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_5_0 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_5_1 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_5_2 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_5_3 +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_5_4 +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_5_7 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_5_8 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_5_9 +DEBUG:snowflake.connector.result_set:result batch 57 has id: data_0_6_0 +DEBUG:snowflake.connector.result_set:result batch 58 has id: data_0_6_1 +DEBUG:snowflake.connector.result_set:result batch 59 has id: data_0_6_2 +DEBUG:snowflake.connector.result_set:result batch 60 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 61 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 62 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 63 has id: data_0_6_6 +DEBUG:snowflake.connector.result_set:result batch 64 has id: data_0_6_7 +DEBUG:snowflake.connector.result_set:result batch 65 has id: data_0_6_8 +DEBUG:snowflake.connector.result_set:result batch 66 has id: data_0_7_0 +DEBUG:snowflake.connector.result_set:result batch 67 has id: data_0_7_1 +DEBUG:snowflake.connector.result_set:result batch 68 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 69 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 70 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 71 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 72 has id: data_0_7_6 +DEBUG:snowflake.connector.result_set:result batch 73 has id: data_0_7_7 +DEBUG:snowflake.connector.result_set:result batch 74 has id: data_0_7_8 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=O5opNSp3mYoHIEk0%2FbFats%2BNG%2Fo%3D HTTP/1.1" 200 27025 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=bHvX8P%2FXibFSCs7r2FmtRVHg2BI%3D HTTP/1.1" 200 260001 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=BmDlU%2FgoAFS10LJo%2FjenkGkHT7A%3D HTTP/1.1" 200 491328 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=nWHCvDSbLAQy%2FDFfMoefpESon7s%3D HTTP/1.1" 200 138684 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 87 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=TrXsvQ5ZJbAAGxDrPRc%2FLXput%2F4%3D HTTP/1.1" 200 845859 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 90 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 176 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 180 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=rD7XG6pkb1forP5vcuMwRzAU5PY%3D HTTP/1.1" 200 1660034 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_7 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=NMvqWG2kewQmMQSyYMvHTo80Vqo%3D HTTP/1.1" 200 3443978 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=NmC%2BL%2BIEKnde0im0vw7lFD%2FfwQs%3D HTTP/1.1" 200 6733128 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 356 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 358 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 359 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 356 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 359 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 708 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 715 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 719 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 712 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 712 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_0_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=4z2actjU0Ih%2FFGKMjHOmkkJPaRQ%3D HTTP/1.1" 200 1997319 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 714 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 905 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=XAx3X7vqW8FsUV6OZWDTnrg6b%2BA%3D HTTP/1.1" 200 26808 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 906 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 915 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 910 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 913 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=XhMlxGG0c0B6rDNYWbwRcwpmwVE%3D HTTP/1.1" 200 136396 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 902 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 910 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 903 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=VCO77MAzNXu8HuEOUEW7tszkzfY%3D HTTP/1.1" 200 255690 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 976 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 938 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 948 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 944 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 932 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 933 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 938 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=DTkwUp5bmyOj4KaD1ffHI4%2BZJoQ%3D HTTP/1.1" 200 484051 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 937 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 583 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 91 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 176 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 176 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 355 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=zXdd6T9zki7JtXKRs3p5P8bfWiQ%3D HTTP/1.1" 200 1007203 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 354 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 350 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=bQz3G50A1rJuBsdz%2BPae9BChnjU%3D HTTP/1.1" 200 1719536 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 353 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 355 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_8 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=%2FK4q49c9pxxL%2BA3lOlzXU1VND5I%3D HTTP/1.1" 200 3441450 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=6W97tQzpOqMUOAAvybXcHupHczY%3D HTTP/1.1" 200 6652773 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_8 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_1_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=%2F698iSOlRcyp%2FOrj7xNWo8PX8Zs%3D HTTP/1.1" 200 11235062 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 706 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 710 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 705 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 713 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 714 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 913 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 904 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=n59YBwvzHBRwLy8ngCVFOyKB6Zs%3D HTTP/1.1" 200 27016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 910 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 915 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 910 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=0Fy0laZT7VTe6QSKZ9Odcu4y8Gk%3D HTTP/1.1" 200 117774 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 913 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 904 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 31 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 31, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=wHMGg1KhItCavrnaAErDs4p%2BZnU%3D HTTP/1.1" 200 233035 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 910 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1021 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=%2FtNt%2BhFgkBnDpuuA7j2gEPlgM7I%3D HTTP/1.1" 200 474327 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 53 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 53 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 53, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1022 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 1027 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 1024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 1018 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 1021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 1019 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 1025 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 367 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 91 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 91 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 91 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 181 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 180 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 360 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=eOhLfwbv0WJ2oQR4ZWpWb87SytI%3D HTTP/1.1" 200 1714224 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 360 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 360 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 361 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 360 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_8 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=3lN%2BquKbfx908DKkFbluXH2ZKdw%3D HTTP/1.1" 200 3456197 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=JgmQYjIfF8oFEJqDwEtYUIKDWGs%3D HTTP/1.1" 200 892721 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_8 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 359 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 719 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 720 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 721 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 711 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=jmt642CDKRCII9rFtN4BvRVR9sQ%3D HTTP/1.1" 200 6630337 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 718 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_9 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=IkaW66xArSUjZ8iUsDukyYb6TPk%3D HTTP/1.1" 200 13293367 +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_9 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_9 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 921 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_2_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=kgZj2nmilU06BIMa2zbUTJ23eBA%3D HTTP/1.1" 200 8861617 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 909 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_0 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 899 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=CmpSeMnQ6AiFyYCYR8eGX7rBMdQ%3D HTTP/1.1" 200 26592 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 910 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 912 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 916 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=Eslqo8QeIFYFLl%2FK0yKJrnkzIPc%3D HTTP/1.1" 200 135529 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 44 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 63 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 31 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 31, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1018 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1033 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1035 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1033 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1018 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 63 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 63, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1032 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=chRPpG0WhAV5uXxPpDl58aadFnk%3D HTTP/1.1" 200 256127 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1031 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1029 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 1020 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 1028 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 1023 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 1033 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 1030 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 1029 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 1032 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 1031 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 995 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 938 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 934 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 944 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 943 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 939 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 940 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 945 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 935 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 936 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 905 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 44 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 44, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 898 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=Ad5svmNm8X1Hbj0l8737wOPCQHI%3D HTTP/1.1" 200 483841 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 895 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 893 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 901 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 488 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 89 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 89 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 175 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 182 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 351 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 358 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=NtUwNMpCqJE%2F86vip2qpj%2FCXdI0%3D HTTP/1.1" 200 1005513 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 357 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 353 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 359 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_8 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 712 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 706 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 712 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 713 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=YB6ltC6mQ6wufWsXMMMgWUnYuGw%3D HTTP/1.1" 200 8014141 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 709 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 707 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=ydYUexFKO0pf0IsbkgCz7Dyf8CA%3D HTTP/1.1" 200 3386309 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=oTxrQwymgl6gCL5srzK9D3s3Fmo%3D HTTP/1.1" 200 1704083 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_3_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=c6LbOxHd5ccgYEMTmDYeDqrQIOg%3D HTTP/1.1" 200 6689390 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 919 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=13t%2Bll1EC4SWHiyejYSAa6aYcds%3D HTTP/1.1" 200 26588 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 917 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 885 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=5jcji4nMzAIP%2BtSKP5s6Lypk%2BYA%3D HTTP/1.1" 200 134317 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 17 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 17 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 17, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1024 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 1021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 1026 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 949 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 949 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 38 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=9sKi89%2B28%2FBZgqUDXoBaPJ5%2BPFY%3D HTTP/1.1" 200 254295 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 913 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 38 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 38, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 904 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=QD0GVK32K6uxJeFEsdm8GHI42j0%3D HTTP/1.1" 200 484128 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 908 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 210 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 89 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 90 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 88 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 183 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 177 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 359 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 356 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=VzJ0dYNAJ28MS9Pf3GCllc3I%2FV0%3D HTTP/1.1" 200 1001684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 356 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=soKhOwN52dRvPxuKt3vRIcdFnZQ%3D HTTP/1.1" 200 1693136 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 358 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 347 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 41 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 42 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_8 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=80R7nXpwsTNLLAYkUERQPe0AzY8%3D HTTP/1.1" 200 3480993 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 42 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 706 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 711 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 712 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=0F3K67eMLUy5vmwgrizGe4wSP2A%3D HTTP/1.1" 200 6783557 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 719 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 708 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 42 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 43 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_4_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=9SQ6v9DqpSirx0LCtHJ6mg8THnM%3D HTTP/1.1" 200 5533836 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 43 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=Q9IQY9KPvHEG0AdVuX0I5e9vR20%3D HTTP/1.1" 200 25148 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 913 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 903 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 901 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 43 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 44 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=kUj5%2BNNffyjzeOF2XLzlkHpsD4Q%3D HTTP/1.1" 200 127264 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 44 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 906 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 44 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 45 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 27 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=foY13lCrHgJrU2iADwYKV%2F8LN5M%3D HTTP/1.1" 200 241738 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 45 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 926 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 913 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 45 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 46 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 46 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 27 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 27, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 918 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 924 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 925 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=AppzGT0xZxLjbHNGWzPgVLrPEBw%3D HTTP/1.1" 200 456659 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 921 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 928 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 922 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 929 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 925 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 923 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 920 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 277 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 46 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 47 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 47 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 83 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 47 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 48 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 48 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 85 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 85 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 86 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 87 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 88 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 48 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 49 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 49 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 173 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 174 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 173 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 175 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 176 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 49 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 50 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 50 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 174 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 344 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=wJrtxlm3JzibUJWnHkXJ2pZ3O%2B0%3D HTTP/1.1" 200 874423 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 348 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 348 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 351 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 346 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=lFjEstfEnHMUYki1OxyDlTd84vs%3D HTTP/1.1" 200 1710071 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 50 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 51 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_8 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=Mr4ENCtLrbhQtiSwACkmq36eC3Y%3D HTTP/1.1" 200 3432970 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 51 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 350 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 698 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 699 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=JsT1geLoGyMVcHje0C2JNgGVGRk%3D HTTP/1.1" 200 6743248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 694 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 691 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 701 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=k7P7oNgX1SYbfOlKn%2FmwmFe90T4%3D HTTP/1.1" 200 13164649 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 51 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 52 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_9 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 52 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 919 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 907 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_5_9?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=IaAU1ofszctq1d8CqJBqUYrnLmc%3D HTTP/1.1" 200 1494755 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 904 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 52 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 53 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_9 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_0 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 53 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 905 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=TYJzyGMBR2JVhqKDRmZ1U8NktlU%3D HTTP/1.1" 200 26316 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 927 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 897 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 903 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 901 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 53 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 54 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=5FiodVS8i81Q5u5YBidIvRlbZdY%3D HTTP/1.1" 200 136721 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 33 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 54 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 33 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 33, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 896 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 894 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 890 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 892 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 899 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 54 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 55 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=CnFt%2FgYv%2BtPMNI1huolEKtQTO7Y%3D HTTP/1.1" 200 258794 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 65 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 55 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 65 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 65, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 895 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 886 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 888 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 32, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 33, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 34, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 35, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 36, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 37, rows in current batch: 885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 38, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 39, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 40, rows in current batch: 870 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 41, rows in current batch: 887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 42, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 43, rows in current batch: 873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 44, rows in current batch: 871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 45, rows in current batch: 884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 46, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 47, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 48, rows in current batch: 869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 49, rows in current batch: 881 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 50, rows in current batch: 877 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 51, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 52, rows in current batch: 871 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 53, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 54, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 55, rows in current batch: 875 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 56, rows in current batch: 882 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 57, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 58, rows in current batch: 874 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 59, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 60, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 61, rows in current batch: 869 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 62, rows in current batch: 872 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 63, rows in current batch: 889 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 64, rows in current batch: 872 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 55 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 56 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 56 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 880 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 876 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 879 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 883 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=h9TqoT8VDKVDmQQcSVXh6hm19R4%3D HTTP/1.1" 200 489293 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 883 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 878 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 294 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 56 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 57 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 57 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 85 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 57 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 58 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 58 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 87 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 58 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 59 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 59 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 89 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 176 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 176 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 177 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 59 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 60 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 60 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 351 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=%2Bo2UFAdJ05s6xMFUpe0AiAz9dl0%3D HTTP/1.1" 200 848463 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 354 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=z4yX2WdeOHav%2F6%2BI4J6a3Q4OS1Y%3D HTTP/1.1" 200 1679083 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 352 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 357 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 357 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 60 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 61 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_8 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_8 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 61 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=0Bbz9BP%2FcD6zqu0fLVPT6gu1VyY%3D HTTP/1.1" 200 6714513 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_8 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 707 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 710 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 706 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=5AYBDwzW4tmIFfsS2R3qdXXhwVI%3D HTTP/1.1" 200 6675411 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 709 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 719 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 61 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 62 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 62 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 708 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=Sy0mf6J6saGaUaSh7cXi3JYBdsk%3D HTTP/1.1" 200 26577 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 909 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_6_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=ORZAZs9STD7ZPEHClyjx%2Bh2CgzM%3D HTTP/1.1" 200 3424012 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 909 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 62 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 63 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=Z42a1cAk67qvVKaBo179Ws3Tl3s%3D HTTP/1.1" 200 137710 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 63 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 898 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 909 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 63 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 64 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_8 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=p7sU44RKRqII2MoAx%2Fsr69221g0%3D HTTP/1.1" 200 256787 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 32 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 64 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 891 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 885 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 900 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 902 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 64 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 65 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 65 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 32, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 905 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 897 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 908 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=7lZp1bZOBFs%2Bh3Ue0p%2Be%2F2Dshnw%3D HTTP/1.1" 200 489340 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 912 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 914 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 916 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 915 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 31, rows in current batch: 181 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 65 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 66 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 66 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 85 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 66 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 67 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 67 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 87 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 91 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 89 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 89 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 67 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 68 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 68 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 88 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 179 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 178 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 174 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 175 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 68 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 69 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 69 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 180 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 357 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 354 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=d5Msu8FzF46avIaImx5cpCskLJo%3D HTTP/1.1" 200 1013697 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 353 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=lY76ohWauvC9v4%2FBYdNIG%2FISmt0%3D HTTP/1.1" 200 1715487 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 357 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 357 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 69 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 70 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=j2F6il0B%2F9A%2B7YAleGj2JEWTkUE%3D HTTP/1.1" 200 3441865 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_8 +DEBUG:snowflake.connector.result_set:user began consuming result batch 70 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_8 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 716 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=iSGt9T%2BliK0dTlhKjTpp2dYhoz4%3D HTTP/1.1" 200 6679445 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 714 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 710 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 712 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 710 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 70 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 71 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a836e6-0502-ae87-1a4b-0303c54134f7_0/main/data_0_7_8?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668103814&Signature=xDLSa8D30UxRzfh4dJ%2BYh3knKNo%3D HTTP/1.1" 200 6273629 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 71 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 916 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 71 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 72 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 16 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 72 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 16, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 914 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 911 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 72 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 73 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 31 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 73 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 31, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 917 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 912 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 910 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 30 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_8 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 904 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 905 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 30, rows in current batch: 905 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 73 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 74 +DEBUG:snowflake.connector.result_set:user began consuming result batch 74 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 30 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 30, columnCount 85, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 901 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 918 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 11, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 12, rows in current batch: 912 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 13, rows in current batch: 906 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 14, rows in current batch: 903 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 15, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 16, rows in current batch: 908 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 17, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 18, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 19, rows in current batch: 884 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 20, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 21, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 22, rows in current batch: 907 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 23, rows in current batch: 909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 24, rows in current batch: 899 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 25, rows in current batch: 913 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 26, rows in current batch: 911 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 27, rows in current batch: 910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 28, rows in current batch: 902 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 29, rows in current batch: 338 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 74 +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:19:55] "GET /daterange HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:19:55] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:19:55] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:19:56] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:19:56] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:19:56] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:19:56] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:19:56] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:19:56] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:19:56] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:19:56] "GET /js/main.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT targets.id AS targets_id, targets.targetname AS targets_targetname, targets.username AS targets_username, targets.password AS targets_password, targets.account AS targets_account, targets.warehouse AS targets_warehouse, targets."database" AS targets_database, targets.schemaname AS targets_schemaname +FROM targets +INFO:sqlalchemy.engine.Engine:[cached since 38.34s ago] () +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:33] "POST /schemas HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:33] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:33] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:34] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:34] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:34] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:34] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:34] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:34] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:34] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:34] "GET /js/main.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT targets.id AS targets_id, targets.targetname AS targets_targetname, targets.username AS targets_username, targets.password AS targets_password, targets.account AS targets_account, targets.warehouse AS targets_warehouse, targets."database" AS targets_database, targets.schemaname AS targets_schemaname +FROM targets +WHERE targets."database" = ? AND targets.schemaname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00365s] ('PL_DEV', 'PM_TRANS_CL_EPALARM_QLIK_CT_D', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT targets.id AS targets_id, targets.targetname AS targets_targetname, targets.username AS targets_username, targets.password AS targets_password, targets.account AS targets_account, targets.warehouse AS targets_warehouse, targets."database" AS targets_database, targets.schemaname AS targets_schemaname +FROM targets +WHERE targets."database" = ? AND targets.schemaname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.0408s ago] ('PL_QA', 'PM_TRANS_CL_EPALARM_QLIK_CT_D', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.05572s] ('get_tablelist', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=11b01880-774a-41fb-91c6-1a54a0ac9511 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 10bd013c-2053-4800-92b3-6b8397260b11 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1820533091984 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1820533091984 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1820533492320 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1820533492320 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1820533492320 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1820533492320 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1820533091984 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1820533091984 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=11b01880-774a-41fb-91c6-1a54a0ac9511&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=10bd013c-2053-4800-92b3-6b8397260b11 HTTP/1.1" 200 1548 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select distinct(table_name) from information_schema.columns where table_schema =...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 90ea96b5-140c-4790-9077-2f256039844a +DEBUG:snowflake.connector.cursor:running query [select distinct(table_name) from information_schema.columns where table_schema =...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select distinct(table_name) from information_schema.columns where table_schema =...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: eba5d90f-2791-437d-8704-4d17301d19f3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=90ea96b5-140c-4790-9077-2f256039844a&request_guid=eba5d90f-2791-437d-8704-4d17301d19f3 HTTP/1.1" 200 1968 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83724-0502-b1d6-1a4b-0303c551129f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83724-0502-b1d6-1a4b-0303c551129f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 15 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83724-0502-b1d6-1a4b-0303c551129f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 37e009cf-8b37-4582-81c5-6c5a1620998f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83724-0502-b1d6-1a4b-0303c551129f?request_guid=37e009cf-8b37-4582-81c5-6c5a1620998f HTTP/1.1" 200 1856 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83724-0502-b1d6-1a4b-0303c551129f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d93a1f28-d74c-47cd-8d70-c000df427ef2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83724-0502-b1d6-1a4b-0303c551129f?request_guid=d93a1f28-d74c-47cd-8d70-c000df427ef2 HTTP/1.1" 200 1855 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83724-0502-b1d6-1a4b-0303c551129f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: f2c08a55-65ed-4b75-bc97-ad12bdec5832 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83724-0502-b1d6-1a4b-0303c551129f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83724-0502-b1d6-1a4b-0303c551129f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: effdcbda-50b9-4f04-9f4b-9ffcfba726ea +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f2c08a55-65ed-4b75-bc97-ad12bdec5832&request_guid=effdcbda-50b9-4f04-9f4b-9ffcfba726ea HTTP/1.1" 200 1968 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83724-0502-b0de-1a4b-0303c55121cb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83724-0502-b0de-1a4b-0303c55121cb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 15 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2 +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:49] "POST /tables HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:50] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:50] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:50] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:50] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:50] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:50] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:50] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:50] "GET /js/main.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:50] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:50] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:59] "POST /submit HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:20:59] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:21:00] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:21:00] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:21:00] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:21:00] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:21:00] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:21:00] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:21:00] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:21:00] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:21:00] "GET /js/main.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 69.16s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 69.17s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 69.17s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=b15886d2-c380-42ee-9f0c-8d9bf21a5e0c +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 59646246-81a8-4056-ae01-dac633162e42 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=b15886d2-c380-42ee-9f0c-8d9bf21a5e0c&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=59646246-81a8-4056-ae01-dac633162e42 HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=ad2e30fe-1fba-4f70-a087-a84ce37e98f9 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 053fe1f5-84f2-4a84-972f-0586b5286719 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=ad2e30fe-1fba-4f70-a087-a84ce37e98f9&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=053fe1f5-84f2-4a84-972f-0586b5286719 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 21.65s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 22efdf0a-6a39-4bd2-884b-c4c7c1ba68b5 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 09025d6d-ea99-461d-ae59-ccc8db0d5c4e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=22efdf0a-6a39-4bd2-884b-c4c7c1ba68b5&request_guid=09025d6d-ea99-461d-ae59-ccc8db0d5c4e HTTP/1.1" 200 2195 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83725-0502-b1d6-1a4b-0303c551173b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83725-0502-b1d6-1a4b-0303c551173b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83725-0502-b1d6-1a4b-0303c551173b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a0da78dd-8fa3-4bcd-8c32-9f04e3780594 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83725-0502-b1d6-1a4b-0303c551173b?request_guid=a0da78dd-8fa3-4bcd-8c32-9f04e3780594 HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83725-0502-b1d6-1a4b-0303c551173b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5647a37d-afef-47f6-b521-b1bf1b6729f7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83725-0502-b1d6-1a4b-0303c551173b?request_guid=5647a37d-afef-47f6-b521-b1bf1b6729f7 HTTP/1.1" 200 1855 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83725-0502-b1d6-1a4b-0303c551173b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: cd3f98cf-a3ee-4a86-9522-10678cb390d5 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83725-0502-b1d6-1a4b-0303c551173b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83725-0502-b1d6-1a4b-0303c551173b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 73821fea-8839-4ea9-9901-ff35e4fce0f9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cd3f98cf-a3ee-4a86-9522-10678cb390d5&request_guid=73821fea-8839-4ea9-9901-ff35e4fce0f9 HTTP/1.1" 200 2196 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83725-0502-af26-1a4b-0303c551300f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83725-0502-af26-1a4b-0303c551300f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 6e51d37a-5607-4651-afe7-0e4ac60033d3 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: af417e11-71b2-41af-901e-d44a7dd855ad +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6e51d37a-5607-4651-afe7-0e4ac60033d3&request_guid=af417e11-71b2-41af-901e-d44a7dd855ad HTTP/1.1" 200 1781 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83725-0502-b1d6-1a4b-0303c551176f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83725-0502-b1d6-1a4b-0303c551176f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83725-0502-b1d6-1a4b-0303c551176f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ba4026f4-f5ed-4fc5-b976-efa6b2fb678f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83725-0502-b1d6-1a4b-0303c551176f?request_guid=ba4026f4-f5ed-4fc5-b976-efa6b2fb678f HTTP/1.1" 200 2170 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83725-0502-b1d6-1a4b-0303c551176f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f70d19e9-63cf-41e0-806f-d240459296fb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83725-0502-b1d6-1a4b-0303c551176f?request_guid=f70d19e9-63cf-41e0-806f-d240459296fb HTTP/1.1" 200 2170 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83725-0502-b1d6-1a4b-0303c551176f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 62b106cd-f55c-4004-b6dc-295ec9445078 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83725-0502-b1d6-1a4b-0303c551176f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83725-0502-b1d6-1a4b-0303c551176f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 66fb966c-87f3-45f2-a86c-437251f5bd75 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=62b106cd-f55c-4004-b6dc-295ec9445078&request_guid=66fb966c-87f3-45f2-a86c-437251f5bd75 HTTP/1.1" 200 1782 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83725-0502-b1d6-1a4b-0303c5511787 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83725-0502-b1d6-1a4b-0303c5511787 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: cf6205aa-07de-4a82-8cdb-92ce29859882 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6d13f097-02da-42ac-bb92-abd794c02d32 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cf6205aa-07de-4a82-8cdb-92ce29859882&request_guid=6d13f097-02da-42ac-bb92-abd794c02d32 HTTP/1.1" 200 2195 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83725-0502-afee-1a4b-0303c55107c3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83725-0502-afee-1a4b-0303c55107c3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83725-0502-afee-1a4b-0303c55107c3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c54869dd-56ce-4cf9-b4e7-e63aa3851449 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83725-0502-afee-1a4b-0303c55107c3?request_guid=c54869dd-56ce-4cf9-b4e7-e63aa3851449 HTTP/1.1" 200 1682 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83725-0502-afee-1a4b-0303c55107c3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d2d63126-7d1a-4a60-9ffd-901743c4520a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83725-0502-afee-1a4b-0303c55107c3?request_guid=d2d63126-7d1a-4a60-9ffd-901743c4520a HTTP/1.1" 200 1682 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83725-0502-afee-1a4b-0303c55107c3'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 76e1c1d8-4bf0-4ab3-854b-aefd405db085 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83725-0502-afee-1a4b-0303c55107c3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83725-0502-afee-1a4b-0303c55107c3'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 908a993a-fbb9-4855-91d7-d19d96c9979b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=76e1c1d8-4bf0-4ab3-854b-aefd405db085&request_guid=908a993a-fbb9-4855-91d7-d19d96c9979b HTTP/1.1" 200 2196 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83725-0502-ae87-1a4b-0303c550fbc3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83725-0502-ae87-1a4b-0303c550fbc3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 23.93s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=a139c1c4-af5d-4b04-9cc2-a859b938ce05 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 02f48094-2c41-4d0e-8616-9bd439c8762a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=a139c1c4-af5d-4b04-9cc2-a859b938ce05&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=02f48094-2c41-4d0e-8616-9bd439c8762a HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 6220b777-b0d5-41d7-9b18-4d7476881a4a +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 10b1cfb3-384e-4d7d-bdf0-af7ec2bbc994 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6220b777-b0d5-41d7-9b18-4d7476881a4a&request_guid=10b1cfb3-384e-4d7d-bdf0-af7ec2bbc994 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83725-0502-af26-1a4b-0303c551309f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83725-0502-af26-1a4b-0303c551309f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 333 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83725-0502-af26-1a4b-0303c551309f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6cda31d7-ca1c-44aa-b955-9f1cb62f2373 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83725-0502-af26-1a4b-0303c551309f?request_guid=6cda31d7-ca1c-44aa-b955-9f1cb62f2373 HTTP/1.1" 200 2090 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83725-0502-af26-1a4b-0303c551309f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 964c65c8-b55d-475b-8a05-82849465f82f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83725-0502-af26-1a4b-0303c551309f?request_guid=964c65c8-b55d-475b-8a05-82849465f82f HTTP/1.1" 200 2090 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83725-0502-af26-1a4b-0303c551309f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 90183a9a-5600-4de2-95c5-f9d8195a256f +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83725-0502-af26-1a4b-0303c551309f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83725-0502-af26-1a4b-0303c551309f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f47f9c56-31e9-4755-a315-df4f09ecae23 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=90183a9a-5600-4de2-95c5-f9d8195a256f&request_guid=f47f9c56-31e9-4755-a315-df4f09ecae23 HTTP/1.1" 200 2261 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83725-0502-b0de-1a4b-0303c551277f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83725-0502-b0de-1a4b-0303c551277f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83725-0502-af26-1a4b-0303c551309f_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668104474&Signature=4ObMnYkyusMIunCW4le%2Bh7KmYbg%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83725-0502-af26-1a4b-0303c551309f_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668104474&Signature=wgPAL87Me%2F5Fz41K4AxdmqBt7lk%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83725-0502-af26-1a4b-0303c551309f_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668104474&Signature=DEkdWaxg%2FuISPlodjo3kALr7gkg%3D HTTP/1.1" 200 247815 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83725-0502-af26-1a4b-0303c551309f_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668104474&Signature=pwLSwkY87mKudbKw2luxxxH8PbM%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8d076974-7faf-47b6-89d4-9c1609c66414 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=8d076974-7faf-47b6-89d4-9c1609c66414 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1225 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\pgfunctions.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:26:49] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:26:49] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:26:49] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:26:49] "GET /js/main.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 12.42s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 12.43s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 12.43s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=655eb9a6-8d4d-402d-a255-e4fe79fca3cc +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4ceec195-1abe-4ab0-9ee0-162b0d78042c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2505796803824 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2505796803824 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2505797171328 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2505797171328 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2505797171328 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2505797171328 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2505796803824 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2505796803824 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=655eb9a6-8d4d-402d-a255-e4fe79fca3cc&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=4ceec195-1abe-4ab0-9ee0-162b0d78042c HTTP/1.1" 200 1557 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=2008644a-9052-42ba-bdf9-2bf9696fb398 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: df9f52c8-9713-4973-9101-e0314f626ac2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=2008644a-9052-42ba-bdf9-2bf9696fb398&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=df9f52c8-9713-4973-9101-e0314f626ac2 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00155s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 5f1ca070-cd2b-4e53-bfc7-c3bb0e96af38 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8dc61f88-e1c6-4327-beb5-329806340a59 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5f1ca070-cd2b-4e53-bfc7-c3bb0e96af38&request_guid=8dc61f88-e1c6-4327-beb5-329806340a59 HTTP/1.1" 200 2195 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8372b-0502-b0de-1a4b-0303c552e17b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8372b-0502-b0de-1a4b-0303c552e17b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8372b-0502-b0de-1a4b-0303c552e17b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 334d20f8-c354-415f-9cda-6c4264933b28 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8372b-0502-b0de-1a4b-0303c552e17b?request_guid=334d20f8-c354-415f-9cda-6c4264933b28 HTTP/1.1" 200 1857 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8372b-0502-b0de-1a4b-0303c552e17b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6dad9ecc-2ab3-466d-8306-2695c8ca76eb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8372b-0502-b0de-1a4b-0303c552e17b?request_guid=6dad9ecc-2ab3-466d-8306-2695c8ca76eb HTTP/1.1" 200 1856 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8372b-0502-b0de-1a4b-0303c552e17b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: a0eaafe9-c951-4d93-90b5-e44fc64e051b +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8372b-0502-b0de-1a4b-0303c552e17b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8372b-0502-b0de-1a4b-0303c552e17b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e96d3bd7-f248-43fe-b608-8352e0bcb959 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a0eaafe9-c951-4d93-90b5-e44fc64e051b&request_guid=e96d3bd7-f248-43fe-b608-8352e0bcb959 HTTP/1.1" 200 2196 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8372b-0502-b1d6-1a4b-0303c552bd47 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8372b-0502-b1d6-1a4b-0303c552bd47 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 537f7a59-678f-4324-b5f8-48869f19db07 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 41d799ae-9832-42e8-aaad-988629e289f9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=537f7a59-678f-4324-b5f8-48869f19db07&request_guid=41d799ae-9832-42e8-aaad-988629e289f9 HTTP/1.1" 200 1787 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8372b-0502-afee-1a4b-0303c552d2a3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8372b-0502-afee-1a4b-0303c552d2a3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8372b-0502-afee-1a4b-0303c552d2a3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f39bcbfd-bd9b-4cdf-a175-382bd135f058 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8372b-0502-afee-1a4b-0303c552d2a3?request_guid=f39bcbfd-bd9b-4cdf-a175-382bd135f058 HTTP/1.1" 200 2187 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8372b-0502-afee-1a4b-0303c552d2a3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 56f0f05b-fa21-4356-8aa6-77cf5a6bd961 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8372b-0502-afee-1a4b-0303c552d2a3?request_guid=56f0f05b-fa21-4356-8aa6-77cf5a6bd961 HTTP/1.1" 200 2186 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8372b-0502-afee-1a4b-0303c552d2a3'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 25f7dbd4-9a0f-4add-a943-d1ddab5e75ee +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8372b-0502-afee-1a4b-0303c552d2a3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8372b-0502-afee-1a4b-0303c552d2a3'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8c8aae87-3cd0-49a8-8925-67a48f8e1a37 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=25f7dbd4-9a0f-4add-a943-d1ddab5e75ee&request_guid=8c8aae87-3cd0-49a8-8925-67a48f8e1a37 HTTP/1.1" 200 1788 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8372b-0502-ae87-1a4b-0303c552b003 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8372b-0502-ae87-1a4b-0303c552b003 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: d97f1f22-a085-45b2-a3e1-8d77c4232af1 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b692af4a-e43e-484d-ab9f-f400ff0d1887 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d97f1f22-a085-45b2-a3e1-8d77c4232af1&request_guid=b692af4a-e43e-484d-ab9f-f400ff0d1887 HTTP/1.1" 200 2191 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8372b-0502-af26-1a4b-0303c552ca97 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8372b-0502-af26-1a4b-0303c552ca97 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8372b-0502-af26-1a4b-0303c552ca97' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 12193492-9dc2-40a9-b6ca-2673b0d399b8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8372b-0502-af26-1a4b-0303c552ca97?request_guid=12193492-9dc2-40a9-b6ca-2673b0d399b8 HTTP/1.1" 200 1683 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8372b-0502-af26-1a4b-0303c552ca97' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 75f4500f-34df-41f5-96ef-6fe12b48b222 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8372b-0502-af26-1a4b-0303c552ca97?request_guid=75f4500f-34df-41f5-96ef-6fe12b48b222 HTTP/1.1" 200 1684 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8372b-0502-af26-1a4b-0303c552ca97'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 69ffee04-17a1-493b-ab15-9b15fd792081 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8372b-0502-af26-1a4b-0303c552ca97'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8372b-0502-af26-1a4b-0303c552ca97'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 108197dc-32b5-4299-8549-69fabd66fc66 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=69ffee04-17a1-493b-ab15-9b15fd792081&request_guid=108197dc-32b5-4299-8549-69fabd66fc66 HTTP/1.1" 200 2188 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8372b-0502-b1d6-1a4b-0303c552bddf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8372b-0502-b1d6-1a4b-0303c552bddf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 3.771s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=98ce520e-bf4a-47ee-b488-a08eecb91fc7 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5b93593d-8888-41dc-932c-7db998bd9a21 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=98ce520e-bf4a-47ee-b488-a08eecb91fc7&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=5b93593d-8888-41dc-932c-7db998bd9a21 HTTP/1.1" 200 1557 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 06d4f6c6-8f9d-4118-889f-b0c82569eca2 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 10763f38-4a3b-4633-b404-f59d76a489be +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=06d4f6c6-8f9d-4118-889f-b0c82569eca2&request_guid=10763f38-4a3b-4633-b404-f59d76a489be HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8372b-0502-af26-1a4b-0303c552caeb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8372b-0502-af26-1a4b-0303c552caeb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 333 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8372b-0502-af26-1a4b-0303c552caeb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 848f44b4-ebd3-4433-be14-8323197e61a9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8372b-0502-af26-1a4b-0303c552caeb?request_guid=848f44b4-ebd3-4433-be14-8323197e61a9 HTTP/1.1" 200 2090 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8372b-0502-af26-1a4b-0303c552caeb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 470c1feb-b637-4f8c-82cd-c6302ee17dbd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8372b-0502-af26-1a4b-0303c552caeb?request_guid=470c1feb-b637-4f8c-82cd-c6302ee17dbd HTTP/1.1" 200 2090 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8372b-0502-af26-1a4b-0303c552caeb'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: a28d852d-c377-40f5-8fd5-8fd90b663d14 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8372b-0502-af26-1a4b-0303c552caeb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8372b-0502-af26-1a4b-0303c552caeb'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 74467b11-c7b3-48f2-a7e3-450e64187a13 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a28d852d-c377-40f5-8fd5-8fd90b663d14&request_guid=74467b11-c7b3-48f2-a7e3-450e64187a13 HTTP/1.1" 200 2270 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8372b-0502-ae87-1a4b-0303c552f0cb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8372b-0502-ae87-1a4b-0303c552f0cb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8372b-0502-af26-1a4b-0303c552caeb_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668104828&Signature=MeSZBEspegjHEUOxjSGjS2msqCU%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8372b-0502-af26-1a4b-0303c552caeb_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668104828&Signature=W1JQS5TW8J%2F4CT3Vf2LmT2Iey9M%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8372b-0502-af26-1a4b-0303c552caeb_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668104828&Signature=GIlBlQ2wHVvy2yRilYBpC%2BV%2BRzA%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8372b-0502-af26-1a4b-0303c552caeb_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668104828&Signature=c%2BKfF%2BcPOEcLFPOSGCDTtm49DzI%3D HTTP/1.1" 200 255951 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1357 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6c997091-1e51-4366-a47d-d779c0bcb853 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=6c997091-1e51-4366-a47d-d779c0bcb853 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\pgfunctions.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:31:42] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 21.12s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 21.13s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 21.13s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=26726221-a3ee-405b-b8ba-e9ece15def20 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 63aa2c97-2a87-43b2-b01a-034615a89cdb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2069681018032 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2069681018032 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2069681320000 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2069681320000 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2069681320000 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2069681320000 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2069681018032 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2069681018032 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=26726221-a3ee-405b-b8ba-e9ece15def20&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=63aa2c97-2a87-43b2-b01a-034615a89cdb HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=44b590a0-f798-4b05-beee-65defd446bcf +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 67b2378e-a1b9-42b2-845c-d97103631aa5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=44b590a0-f798-4b05-beee-65defd446bcf&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=67b2378e-a1b9-42b2-845c-d97103631aa5 HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00236s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 67934d9b-6ce4-411d-85c5-0a0e00a66cce +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9b985b66-c590-4c03-83ed-e97386ed370f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=67934d9b-6ce4-411d-85c5-0a0e00a66cce&request_guid=9b985b66-c590-4c03-83ed-e97386ed370f HTTP/1.1" 200 2200 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8372f-0502-afee-1a4b-0303c5541297 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8372f-0502-afee-1a4b-0303c5541297 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8372f-0502-afee-1a4b-0303c5541297' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a50052a2-8374-4927-bd5e-3ac471a4571b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8372f-0502-afee-1a4b-0303c5541297?request_guid=a50052a2-8374-4927-bd5e-3ac471a4571b HTTP/1.1" 200 1861 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8372f-0502-afee-1a4b-0303c5541297' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 13151cb4-6c4c-4e7e-904a-e89bf6d12abb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8372f-0502-afee-1a4b-0303c5541297?request_guid=13151cb4-6c4c-4e7e-904a-e89bf6d12abb HTTP/1.1" 200 1861 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8372f-0502-afee-1a4b-0303c5541297'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 47015ee5-27cb-45aa-8531-623c9af84cac +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8372f-0502-afee-1a4b-0303c5541297'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8372f-0502-afee-1a4b-0303c5541297'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a9c1b442-9aa1-4900-9a6e-d366cd72392f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=47015ee5-27cb-45aa-8531-623c9af84cac&request_guid=a9c1b442-9aa1-4900-9a6e-d366cd72392f HTTP/1.1" 200 2200 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8372f-0502-afee-1a4b-0303c55412c7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8372f-0502-afee-1a4b-0303c55412c7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 9e4011b1-f856-43eb-b58c-ca121ea6e293 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c780627d-d3e0-42e7-83a1-f1a17b062efd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=9e4011b1-f856-43eb-b58c-ca121ea6e293&request_guid=c780627d-d3e0-42e7-83a1-f1a17b062efd HTTP/1.1" 200 1789 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8372f-0502-afee-1a4b-0303c55412cb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8372f-0502-afee-1a4b-0303c55412cb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8372f-0502-afee-1a4b-0303c55412cb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 16cc9de6-c716-4160-89c5-5dd9c598b842 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8372f-0502-afee-1a4b-0303c55412cb?request_guid=16cc9de6-c716-4160-89c5-5dd9c598b842 HTTP/1.1" 200 2182 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8372f-0502-afee-1a4b-0303c55412cb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 38d39484-05bc-4e6e-95d7-147ee168fd9b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8372f-0502-afee-1a4b-0303c55412cb?request_guid=38d39484-05bc-4e6e-95d7-147ee168fd9b HTTP/1.1" 200 2181 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8372f-0502-afee-1a4b-0303c55412cb'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: b66ede7a-75a3-45bc-80b3-c9a39bc26b5a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8372f-0502-afee-1a4b-0303c55412cb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8372f-0502-afee-1a4b-0303c55412cb'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bcae2ff5-010e-471c-9d5f-932c3c9746fd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b66ede7a-75a3-45bc-80b3-c9a39bc26b5a&request_guid=bcae2ff5-010e-471c-9d5f-932c3c9746fd HTTP/1.1" 200 1789 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83730-0502-afee-1a4b-0303c554130b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83730-0502-afee-1a4b-0303c554130b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 56043992-c065-4b90-856d-2b357945e2fa +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 08dd8c56-d6f4-4eb3-afab-d5b217992002 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=56043992-c065-4b90-856d-2b357945e2fa&request_guid=08dd8c56-d6f4-4eb3-afab-d5b217992002 HTTP/1.1" 200 2193 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83730-0502-ae87-1a4b-0303c55430db +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83730-0502-ae87-1a4b-0303c55430db +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83730-0502-ae87-1a4b-0303c55430db' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6471b88f-6d60-4a5a-9602-b16e96343136 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83730-0502-ae87-1a4b-0303c55430db?request_guid=6471b88f-6d60-4a5a-9602-b16e96343136 HTTP/1.1" 200 1682 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83730-0502-ae87-1a4b-0303c55430db' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: faf30e32-a6d5-43ad-8f99-805ed6b04681 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83730-0502-ae87-1a4b-0303c55430db?request_guid=faf30e32-a6d5-43ad-8f99-805ed6b04681 HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83730-0502-ae87-1a4b-0303c55430db'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 737ebf56-40f0-4fcb-9907-9833ff2e3413 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83730-0502-ae87-1a4b-0303c55430db'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83730-0502-ae87-1a4b-0303c55430db'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9064d0b1-a973-4599-a979-fbd12c1d20f7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=737ebf56-40f0-4fcb-9907-9833ff2e3413&request_guid=9064d0b1-a973-4599-a979-fbd12c1d20f7 HTTP/1.1" 200 2190 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83730-0502-b0de-1a4b-0303c55421b7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83730-0502-b0de-1a4b-0303c55421b7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 3.413s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=fbdf0f18-f6ec-4a48-9058-708cb1e61d47 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d9162ba9-de23-42e0-853d-55732789e775 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=fbdf0f18-f6ec-4a48-9058-708cb1e61d47&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=d9162ba9-de23-42e0-853d-55732789e775 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 5f99feb8-b672-4333-bf4d-141f8b060cf1 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7ab56911-d860-4cb4-a7e8-2dcbd3975e92 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5f99feb8-b672-4333-bf4d-141f8b060cf1&request_guid=7ab56911-d860-4cb4-a7e8-2dcbd3975e92 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83730-0502-ae87-1a4b-0303c5543123 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83730-0502-ae87-1a4b-0303c5543123 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 333 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83730-0502-ae87-1a4b-0303c5543123' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 41c349aa-f46b-499b-81db-3684b96ee29e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83730-0502-ae87-1a4b-0303c5543123?request_guid=41c349aa-f46b-499b-81db-3684b96ee29e HTTP/1.1" 200 2094 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83730-0502-ae87-1a4b-0303c5543123' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e2b88ebb-dfee-4f48-b61d-0b0c75996a14 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83730-0502-ae87-1a4b-0303c5543123?request_guid=e2b88ebb-dfee-4f48-b61d-0b0c75996a14 HTTP/1.1" 200 2096 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83730-0502-ae87-1a4b-0303c5543123'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: ebc20717-06e7-499d-a691-5a55ce0276a2 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83730-0502-ae87-1a4b-0303c5543123'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83730-0502-ae87-1a4b-0303c5543123'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 08dc5c97-ace4-4606-91e3-58cb9c92a053 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ebc20717-06e7-499d-a691-5a55ce0276a2&request_guid=08dc5c97-ace4-4606-91e3-58cb9c92a053 HTTP/1.1" 200 2271 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83730-0502-ae87-1a4b-0303c5543153 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83730-0502-ae87-1a4b-0303c5543153 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83730-0502-ae87-1a4b-0303c5543123_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105124&Signature=KGZ2kti7QJV%2BH4MU5eHn9BCP%2FAE%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83730-0502-ae87-1a4b-0303c5543123_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105124&Signature=L9GS0PARJtdwQpkJQB0yQBioEYE%3D HTTP/1.1" 200 264602 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83730-0502-ae87-1a4b-0303c5543123_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105124&Signature=Hs0IAFDeiuh1UmgPdgZS4dCtntQ%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83730-0502-ae87-1a4b-0303c5543123_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105124&Signature=oAU7zyP6ii6y%2FRUTdt63yuXc46U%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1367 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 122 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 73d1373e-9fe5-4477-99ad-6893653f30d9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=73d1373e-9fe5-4477-99ad-6893653f30d9 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\pgfunctions.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.6529s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.6578s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.6616s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=26344001-7931-491e-a53b-569044f46917 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d932d6e0-b9c5-4023-8f2e-d94d02791f8e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:33:44] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +DEBUG:filelock:Attempting to acquire lock 1959928403216 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1959928403216 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1959928705184 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1959928705184 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1959928705184 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1959928705184 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1959928403216 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1959928403216 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=26344001-7931-491e-a53b-569044f46917&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=d932d6e0-b9c5-4023-8f2e-d94d02791f8e HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=64e58aa6-c4dd-471f-8cff-d71e3b47fa57 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 89fd3da0-45f2-4934-a446-bf75ab1008aa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 2.932s ago] ('fromdata', 1, 0) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 3.006s ago] ('todata', 1, 0) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 3.03s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=9c1bfca0-fd9a-451a-b315-20fd304b73dc +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 765364a1-bf7d-41bf-9d84-d1edcbbdf863 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=64e58aa6-c4dd-471f-8cff-d71e3b47fa57&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=89fd3da0-45f2-4934-a446-bf75ab1008aa HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00238s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 1d1ad9e7-a85e-4f19-8dac-1cdf6c4bf2a8 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 778cdd93-dead-4c0a-ac04-c165899c92d8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=9c1bfca0-fd9a-451a-b315-20fd304b73dc&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=765364a1-bf7d-41bf-9d84-d1edcbbdf863 HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=3761172a-f134-4505-b8d9-a6ff657c5e25 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 581f9fad-d622-4c6c-8df2-1e3cae5e1e41 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1d1ad9e7-a85e-4f19-8dac-1cdf6c4bf2a8&request_guid=778cdd93-dead-4c0a-ac04-c165899c92d8 HTTP/1.1" 200 2196 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83731-0502-b0de-1a4b-0303c5547e43 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83731-0502-b0de-1a4b-0303c5547e43 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83731-0502-b0de-1a4b-0303c5547e43' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5ac2daa7-9979-4ed3-8a77-c199b1c2b573 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83731-0502-b0de-1a4b-0303c5547e43?request_guid=5ac2daa7-9979-4ed3-8a77-c199b1c2b573 HTTP/1.1" 200 1873 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83731-0502-b0de-1a4b-0303c5547e43' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Request guid: a9db0db5-7477-40ec-bab3-26169b84a153 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83731-0502-b0de-1a4b-0303c5547e43?request_guid=a9db0db5-7477-40ec-bab3-26169b84a153 HTTP/1.1" 200 1874 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83731-0502-b0de-1a4b-0303c5547e43'))] +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.cursor:Request id: 82317f2b-a3dd-4c0f-92c3-fa47d2a3e0a7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83731-0502-b0de-1a4b-0303c5547e43'))] +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83731-0502-b0de-1a4b-0303c5547e43'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6ae2a8bb-8741-4b6d-a3e0-57dcbbcf79c0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=82317f2b-a3dd-4c0f-92c3-fa47d2a3e0a7&request_guid=6ae2a8bb-8741-4b6d-a3e0-57dcbbcf79c0 HTTP/1.1" 200 2200 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83731-0502-ae87-1a4b-0303c5548c97 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.cursor:sfqid: 01a83731-0502-ae87-1a4b-0303c5548c97 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: cc486597-80de-4657-808e-831963d231aa +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.network:Request guid: 44c11eb1-8260-4216-859e-5f53e114ae7f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=3761172a-f134-4505-b8d9-a6ff657c5e25&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=581f9fad-d622-4c6c-8df2-1e3cae5e1e41 HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 2.037s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: ce155cf3-9755-47b9-af05-2978f38ae322 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b823ae9d-3ef3-4751-b276-dc54b7f5c44e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cc486597-80de-4657-808e-831963d231aa&request_guid=44c11eb1-8260-4216-859e-5f53e114ae7f HTTP/1.1" 200 1782 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83731-0502-b1d6-1a4b-0303c5549b77 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83731-0502-b1d6-1a4b-0303c5549b77 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83731-0502-b1d6-1a4b-0303c5549b77' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9dc6a93d-34d1-4971-a2c1-0360c096e6f9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83731-0502-b1d6-1a4b-0303c5549b77?request_guid=9dc6a93d-34d1-4971-a2c1-0360c096e6f9 HTTP/1.1" 200 2178 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83731-0502-b1d6-1a4b-0303c5549b77' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4b2011af-62d1-4373-9d0c-278ddff660d2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83731-0502-b1d6-1a4b-0303c5549b77?request_guid=4b2011af-62d1-4373-9d0c-278ddff660d2 HTTP/1.1" 200 2180 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83731-0502-b1d6-1a4b-0303c5549b77'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 568851f1-d4dd-48f3-ae6b-bbe20144ed59 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83731-0502-b1d6-1a4b-0303c5549b77'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83731-0502-b1d6-1a4b-0303c5549b77'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f101eaf4-8ce5-435f-b918-745b982a5948 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=568851f1-d4dd-48f3-ae6b-bbe20144ed59&request_guid=f101eaf4-8ce5-435f-b918-745b982a5948 HTTP/1.1" 200 1782 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83731-0502-b0de-1a4b-0303c5547edf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83731-0502-b0de-1a4b-0303c5547edf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: aa89e6d3-f6ce-41c7-a2b6-97c2b3427df5 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fd508ef5-fbd5-48bf-8d54-ccbafed86da7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ce155cf3-9755-47b9-af05-2978f38ae322&request_guid=b823ae9d-3ef3-4751-b276-dc54b7f5c44e HTTP/1.1" 200 2195 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83731-0502-b1d6-1a4b-0303c5549b9b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83731-0502-b1d6-1a4b-0303c5549b9b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83731-0502-b1d6-1a4b-0303c5549b9b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2362f4a8-569e-4f71-a697-03dca422b430 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=aa89e6d3-f6ce-41c7-a2b6-97c2b3427df5&request_guid=fd508ef5-fbd5-48bf-8d54-ccbafed86da7 HTTP/1.1" 200 2193 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83731-0502-ae87-1a4b-0303c5548cdf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83731-0502-ae87-1a4b-0303c5548cdf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83731-0502-ae87-1a4b-0303c5548cdf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 268e2584-c288-40a4-a4a4-646b2c47615e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83731-0502-b1d6-1a4b-0303c5549b9b?request_guid=2362f4a8-569e-4f71-a697-03dca422b430 HTTP/1.1" 200 1862 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83731-0502-b1d6-1a4b-0303c5549b9b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 806c4574-0f45-48a1-a2ba-d6426b3f607e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83731-0502-ae87-1a4b-0303c5548cdf?request_guid=268e2584-c288-40a4-a4a4-646b2c47615e HTTP/1.1" 200 1686 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83731-0502-ae87-1a4b-0303c5548cdf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 003cd524-c8f7-40c8-af49-b74382bfb50d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83731-0502-b1d6-1a4b-0303c5549b9b?request_guid=806c4574-0f45-48a1-a2ba-d6426b3f607e HTTP/1.1" 200 1863 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83731-0502-b1d6-1a4b-0303c5549b9b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 19f7f466-48cc-41ef-8181-6b2376ed41e6 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83731-0502-b1d6-1a4b-0303c5549b9b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83731-0502-ae87-1a4b-0303c5548cdf?request_guid=003cd524-c8f7-40c8-af49-b74382bfb50d HTTP/1.1" 200 1686 +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83731-0502-b1d6-1a4b-0303c5549b9b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83731-0502-ae87-1a4b-0303c5548cdf'))] +DEBUG:snowflake.connector.network:Request guid: 8803e27b-42ba-41d6-894f-c979a62cf2a8 +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.cursor:Request id: 9f91ede6-17d0-404f-8957-f3e3e4507441 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83731-0502-ae87-1a4b-0303c5548cdf'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83731-0502-ae87-1a4b-0303c5548cdf'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4bac6773-57a3-49bb-bd6c-abf636ab2f46 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=9f91ede6-17d0-404f-8957-f3e3e4507441&request_guid=4bac6773-57a3-49bb-bd6c-abf636ab2f46 HTTP/1.1" 200 2192 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=19f7f466-48cc-41ef-8181-6b2376ed41e6&request_guid=8803e27b-42ba-41d6-894f-c979a62cf2a8 HTTP/1.1" 200 2195 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:Query id: 01a83731-0502-af26-1a4b-0303c554a8f7 +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.network:Query id: 01a83731-0502-b1d6-1a4b-0303c5549bc7 +DEBUG:snowflake.connector.cursor:sfqid: 01a83731-0502-af26-1a4b-0303c554a8f7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:sfqid: 01a83731-0502-b1d6-1a4b-0303c5549bc7 +DEBUG:snowflake.connector.cursor:SUCCESS +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.cursor:PUT OR GET: None +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 80686272-3121-4786-95af-fc6ad450ad95 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0f6432a8-ef7b-400b-bd74-705729ab662c +DEBUG:snowflake.connector.network:socket timeout: 60 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 3.238s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=aea11ab4-094e-4cd1-9717-2a9837768096 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e6991804-de44-4172-87cf-368acdf16c16 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=80686272-3121-4786-95af-fc6ad450ad95&request_guid=0f6432a8-ef7b-400b-bd74-705729ab662c HTTP/1.1" 200 1784 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83731-0502-b0de-1a4b-0303c5547f0b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83731-0502-b0de-1a4b-0303c5547f0b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83731-0502-b0de-1a4b-0303c5547f0b' +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.network:Request guid: ffd2b501-ac2a-44ae-9930-aa0a02f7467d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83731-0502-b0de-1a4b-0303c5547f0b?request_guid=ffd2b501-ac2a-44ae-9930-aa0a02f7467d HTTP/1.1" 200 2172 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83731-0502-b0de-1a4b-0303c5547f0b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6210dfb3-16a3-4672-b652-d7fe50f7c1e8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83731-0502-b0de-1a4b-0303c5547f0b?request_guid=6210dfb3-16a3-4672-b652-d7fe50f7c1e8 HTTP/1.1" 200 2172 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83731-0502-b0de-1a4b-0303c5547f0b'))] +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.cursor:Request id: 0bfcb88d-fd1b-45c7-ab17-2310c4040776 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83731-0502-b0de-1a4b-0303c5547f0b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83731-0502-b0de-1a4b-0303c5547f0b'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.network:Request guid: 12367385-3f68-4ae8-a8cb-3b29cc03ebe0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0bfcb88d-fd1b-45c7-ab17-2310c4040776&request_guid=12367385-3f68-4ae8-a8cb-3b29cc03ebe0 HTTP/1.1" 200 1785 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83731-0502-af26-1a4b-0303c554a96f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83731-0502-af26-1a4b-0303c554a96f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 8ecc4afc-da6d-4853-ab24-a24a6623b57d +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7ccfe532-f98c-41a1-bbe7-fde6fb24015e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=8ecc4afc-da6d-4853-ab24-a24a6623b57d&request_guid=7ccfe532-f98c-41a1-bbe7-fde6fb24015e HTTP/1.1" 200 2195 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83731-0502-afee-1a4b-0303c554b277 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83731-0502-afee-1a4b-0303c554b277 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83731-0502-afee-1a4b-0303c554b277' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a3df84a5-cf12-482c-a49a-63f7a32795ae +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83731-0502-afee-1a4b-0303c554b277?request_guid=a3df84a5-cf12-482c-a49a-63f7a32795ae HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83731-0502-afee-1a4b-0303c554b277' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3f3387ef-6254-4c21-9f07-a24319e88ec7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83731-0502-afee-1a4b-0303c554b277?request_guid=3f3387ef-6254-4c21-9f07-a24319e88ec7 HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83731-0502-afee-1a4b-0303c554b277'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: d4044c56-c9ef-4207-b585-29c9321e6437 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83731-0502-afee-1a4b-0303c554b277'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83731-0502-afee-1a4b-0303c554b277'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 963513d0-9481-41f5-b4f8-3cbb44da14ee +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d4044c56-c9ef-4207-b585-29c9321e6437&request_guid=963513d0-9481-41f5-b4f8-3cbb44da14ee HTTP/1.1" 200 2195 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83731-0502-ae87-1a4b-0303c5548d8b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83731-0502-ae87-1a4b-0303c5548d8b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=aea11ab4-094e-4cd1-9717-2a9837768096&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=e6991804-de44-4172-87cf-368acdf16c16 HTTP/1.1" 200 1549 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 4ae4bcdb-561d-426b-a9a9-2aa9daf564a6 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3c0fe045-5798-4839-83e5-738d7bf2b013 +DEBUG:snowflake.connector.network:socket timeout: 60 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 5.141s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=694aa4fc-fac1-4bfa-ab1b-187c89aae4aa +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8e7a848f-17ae-4aae-858a-eca43c5b217d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4ae4bcdb-561d-426b-a9a9-2aa9daf564a6&request_guid=3c0fe045-5798-4839-83e5-738d7bf2b013 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83731-0502-af26-1a4b-0303c554a9b3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83731-0502-af26-1a4b-0303c554a9b3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 333 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83731-0502-af26-1a4b-0303c554a9b3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6ed5f85c-d401-4fdf-854e-511ffeab039e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83731-0502-af26-1a4b-0303c554a9b3?request_guid=6ed5f85c-d401-4fdf-854e-511ffeab039e HTTP/1.1" 200 2091 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83731-0502-af26-1a4b-0303c554a9b3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7c02442b-9be7-436d-a1fe-96e14615b767 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=694aa4fc-fac1-4bfa-ab1b-187c89aae4aa&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=8e7a848f-17ae-4aae-858a-eca43c5b217d HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: cc1a9d20-d616-4b90-8ddf-9a063a39b8c7 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e1360b2e-ad83-4e9b-9bfc-431ba01b1af5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83731-0502-af26-1a4b-0303c554a9b3?request_guid=7c02442b-9be7-436d-a1fe-96e14615b767 HTTP/1.1" 200 2090 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83731-0502-af26-1a4b-0303c554a9b3'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: f286ff5d-d11e-43b7-94ce-40a248eaaa41 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83731-0502-af26-1a4b-0303c554a9b3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83731-0502-af26-1a4b-0303c554a9b3'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 091c88bd-fd72-478d-a34f-975bc2525537 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cc1a9d20-d616-4b90-8ddf-9a063a39b8c7&request_guid=e1360b2e-ad83-4e9b-9bfc-431ba01b1af5 HTTP/1.1" 200 2262 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83731-0502-b1d6-1a4b-0303c5549ccb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83731-0502-b1d6-1a4b-0303c5549ccb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83731-0502-b1d6-1a4b-0303c5549ccb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c0ab2f84-8330-4cff-93ab-2e343cf87d2a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f286ff5d-d11e-43b7-94ce-40a248eaaa41&request_guid=091c88bd-fd72-478d-a34f-975bc2525537 HTTP/1.1" 200 2261 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83731-0502-b1d6-1a4b-0303c5549ccf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83731-0502-b1d6-1a4b-0303c5549ccf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83731-0502-b1d6-1a4b-0303c5549ccb?request_guid=c0ab2f84-8330-4cff-93ab-2e343cf87d2a HTTP/1.1" 200 1949 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83731-0502-b1d6-1a4b-0303c5549ccb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.network:Request guid: 2b3abbd5-7d8f-4138-97ae-653fb6722303 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83731-0502-b1d6-1a4b-0303c5549ccb?request_guid=2b3abbd5-7d8f-4138-97ae-653fb6722303 HTTP/1.1" 200 1949 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83731-0502-b1d6-1a4b-0303c5549ccb'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: c0f9a942-f2a4-43be-9ec5-d6d55433c115 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83731-0502-b1d6-1a4b-0303c5549ccb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83731-0502-b1d6-1a4b-0303c5549ccb'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b54b8717-1d1c-4980-8445-8eb9d54a917c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c0f9a942-f2a4-43be-9ec5-d6d55433c115&request_guid=b54b8717-1d1c-4980-8445-8eb9d54a917c HTTP/1.1" 200 2267 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Query id: 01a83731-0502-b1d6-1a4b-0303c5549ce7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.cursor:sfqid: 01a83731-0502-b1d6-1a4b-0303c5549ce7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83731-0502-af26-1a4b-0303c554a9b3_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105236&Signature=ksCCm1niblUQGTJ%2FyZYhFs46reo%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83731-0502-af26-1a4b-0303c554a9b3_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105236&Signature=CGlRGyPTtu39dk1KAZfIS3kUTs0%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83731-0502-af26-1a4b-0303c554a9b3_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105236&Signature=t0CtWAN9xfDF62CpAQPfJDJer9o%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83731-0502-af26-1a4b-0303c554a9b3_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105236&Signature=4a8QjPt3z0rjfsambZbv%2FIvOIL0%3D HTTP/1.1" 200 270642 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1367 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 218 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83731-0502-af26-1a4b-0303c554a9b3_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105237&Signature=2A6Mvgye4adE5CnxrFklkK8zrhE%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83731-0502-af26-1a4b-0303c554a9b3_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105237&Signature=QWAXXviWcuZrbiVnwzXPEx1CK1Y%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83731-0502-af26-1a4b-0303c554a9b3_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105237&Signature=7H%2FbUM9g%2FfxJnvnGDQjuHe5QOWo%3D HTTP/1.1" 200 270642 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83731-0502-af26-1a4b-0303c554a9b3_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105237&Signature=IHrf%2FpGHUQNkbTkMt3NOm43m%2FlE%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1367 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 218 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:34:05] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:34:05] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:34:06] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:34:06] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:34:06] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\pgfunctions.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:36:27] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 6.593s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 6.597s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 6.604s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=cbe90d7f-15ad-41d2-8393-984641b6e4c2 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b5ba39a6-a03d-4cae-987a-132f164967ed +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1814192346480 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1814192346480 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1814192664880 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1814192664880 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1814192664880 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1814192664880 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1814192346480 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1814192346480 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=cbe90d7f-15ad-41d2-8393-984641b6e4c2&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=b5ba39a6-a03d-4cae-987a-132f164967ed HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=72992ab2-4a38-4d92-b521-8ad11b0433e4 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: dee907a3-68ea-4630-a07d-b3b21e8b0308 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=72992ab2-4a38-4d92-b521-8ad11b0433e4&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=dee907a3-68ea-4630-a07d-b3b21e8b0308 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00294s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: a670b68c-5cd1-4632-ab35-9138cd365e42 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: edbcd03b-bc9f-477f-a1d7-4d19a737c56e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a670b68c-5cd1-4632-ab35-9138cd365e42&request_guid=edbcd03b-bc9f-477f-a1d7-4d19a737c56e HTTP/1.1" 200 2199 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83734-0502-ae87-1a4b-0303c5552f7b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83734-0502-ae87-1a4b-0303c5552f7b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83734-0502-ae87-1a4b-0303c5552f7b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 37241c8c-919e-42ce-89e4-2867ad49cf16 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83734-0502-ae87-1a4b-0303c5552f7b?request_guid=37241c8c-919e-42ce-89e4-2867ad49cf16 HTTP/1.1" 200 1858 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83734-0502-ae87-1a4b-0303c5552f7b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a1b2e74d-801e-4871-91d4-845e5f5fd82a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83734-0502-ae87-1a4b-0303c5552f7b?request_guid=a1b2e74d-801e-4871-91d4-845e5f5fd82a HTTP/1.1" 200 1858 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83734-0502-ae87-1a4b-0303c5552f7b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 01a545a1-0dd5-4d2e-97f7-6be7cbce36e8 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83734-0502-ae87-1a4b-0303c5552f7b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83734-0502-ae87-1a4b-0303c5552f7b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 285646fd-0db3-4f2f-99a1-2ff4587180be +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=01a545a1-0dd5-4d2e-97f7-6be7cbce36e8&request_guid=285646fd-0db3-4f2f-99a1-2ff4587180be HTTP/1.1" 200 2197 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83734-0502-afee-1a4b-0303c55556d3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83734-0502-afee-1a4b-0303c55556d3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: f92d755e-4ab7-4828-8952-8d0413e6f354 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c6cf6d07-e953-4e1f-89df-91e03006bc4d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f92d755e-4ab7-4828-8952-8d0413e6f354&request_guid=c6cf6d07-e953-4e1f-89df-91e03006bc4d HTTP/1.1" 200 1783 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83734-0502-b0de-1a4b-0303c555615b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83734-0502-b0de-1a4b-0303c555615b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83734-0502-b0de-1a4b-0303c555615b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9d3873c3-9c67-468d-9f1a-a09c7b9206f0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83734-0502-b0de-1a4b-0303c555615b?request_guid=9d3873c3-9c67-468d-9f1a-a09c7b9206f0 HTTP/1.1" 200 2182 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83734-0502-b0de-1a4b-0303c555615b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c2ed2da6-8745-4499-9f75-c96652f89180 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83734-0502-b0de-1a4b-0303c555615b?request_guid=c2ed2da6-8745-4499-9f75-c96652f89180 HTTP/1.1" 200 2181 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83734-0502-b0de-1a4b-0303c555615b'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 4541f135-209b-4fda-b198-e95433d894c0 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83734-0502-b0de-1a4b-0303c555615b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83734-0502-b0de-1a4b-0303c555615b'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: adad8821-d581-4a78-905f-de2989794a3e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4541f135-209b-4fda-b198-e95433d894c0&request_guid=adad8821-d581-4a78-905f-de2989794a3e HTTP/1.1" 200 1783 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83734-0502-b1d6-1a4b-0303c5553d9b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83734-0502-b1d6-1a4b-0303c5553d9b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 203158e9-47ce-4023-b250-ec1ac0e2e1d9 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0ecd82a7-fed9-4207-b257-97d431842d4c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=203158e9-47ce-4023-b250-ec1ac0e2e1d9&request_guid=0ecd82a7-fed9-4207-b257-97d431842d4c HTTP/1.1" 200 2191 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83734-0502-af26-1a4b-0303c55549df +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83734-0502-af26-1a4b-0303c55549df +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83734-0502-af26-1a4b-0303c55549df' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: dfe341fa-9747-41b3-b88f-c189f3bf9064 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83734-0502-af26-1a4b-0303c55549df?request_guid=dfe341fa-9747-41b3-b88f-c189f3bf9064 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83734-0502-af26-1a4b-0303c55549df' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 910b122a-8af4-475e-984b-35c9a7e56718 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83734-0502-af26-1a4b-0303c55549df?request_guid=910b122a-8af4-475e-984b-35c9a7e56718 HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83734-0502-af26-1a4b-0303c55549df'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: e3ec60eb-5e2e-42fb-9aef-3835fbe6d7ca +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83734-0502-af26-1a4b-0303c55549df'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83734-0502-af26-1a4b-0303c55549df'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: da2a6ac2-1b98-4fe6-aab5-e332782bb2ff +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e3ec60eb-5e2e-42fb-9aef-3835fbe6d7ca&request_guid=da2a6ac2-1b98-4fe6-aab5-e332782bb2ff HTTP/1.1" 200 2191 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83734-0502-afee-1a4b-0303c55556fb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83734-0502-afee-1a4b-0303c55556fb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 2.76s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=6a0bc9e6-5277-4b9f-a202-c84800abdf72 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8e025237-23b2-400f-a6d0-bcc1ae09023f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=6a0bc9e6-5277-4b9f-a202-c84800abdf72&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=8e025237-23b2-400f-a6d0-bcc1ae09023f HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 3897f083-297e-4f24-974f-b142ba4731cc +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bf7eaafb-e757-45d6-b742-0676681a253e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3897f083-297e-4f24-974f-b142ba4731cc&request_guid=bf7eaafb-e757-45d6-b742-0676681a253e HTTP/1.1" 200 2271 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83734-0502-afee-1a4b-0303c555573b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83734-0502-afee-1a4b-0303c555573b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83734-0502-afee-1a4b-0303c555573b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3c317f0b-ff5f-441e-9c7e-975a0821603e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83734-0502-afee-1a4b-0303c555573b?request_guid=3c317f0b-ff5f-441e-9c7e-975a0821603e HTTP/1.1" 200 1942 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83734-0502-afee-1a4b-0303c555573b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a76d289f-aa42-473b-b955-25aa74911aea +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83734-0502-afee-1a4b-0303c555573b?request_guid=a76d289f-aa42-473b-b955-25aa74911aea HTTP/1.1" 200 1942 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83734-0502-afee-1a4b-0303c555573b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: fd65d7fa-b730-4931-b114-bb1f9cffcdae +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83734-0502-afee-1a4b-0303c555573b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83734-0502-afee-1a4b-0303c555573b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f247620b-756d-4584-932e-3bf044985631 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=fd65d7fa-b730-4931-b114-bb1f9cffcdae&request_guid=f247620b-756d-4584-932e-3bf044985631 HTTP/1.1" 200 2269 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83734-0502-b1d6-1a4b-0303c5553dfb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83734-0502-b1d6-1a4b-0303c5553dfb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83731-0502-af26-1a4b-0303c554a9b3_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105399&Signature=O3vCo8g%2FZVRI8B62y%2FZeXOAt0GA%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83731-0502-af26-1a4b-0303c554a9b3_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105399&Signature=H8dtZNZ7E4i9THtqRDVN7bVs9pM%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83731-0502-af26-1a4b-0303c554a9b3_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105399&Signature=87PDzyLau%2FnRrjhLA390QR2P%2F%2Fk%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83731-0502-af26-1a4b-0303c554a9b3_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105399&Signature=3Kj4tqwJU8nLpt8TAHNzLQNJgMU%3D HTTP/1.1" 200 270642 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1367 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 218 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 73967f8e-82d5-4aec-ae90-7b92357ab82a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=73967f8e-82d5-4aec-ae90-7b92357ab82a HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 10.53s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 10.53s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 10.54s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=5dbabac4-49ef-4b7b-b87f-00cf38b2adbf +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3913caf6-c180-4f99-ae62-33a2e2b7339a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1910538424848 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1910538424848 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1910538743200 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1910538743200 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1910538743200 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1910538743200 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1910538424848 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1910538424848 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=5dbabac4-49ef-4b7b-b87f-00cf38b2adbf&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=3913caf6-c180-4f99-ae62-33a2e2b7339a HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=88662c00-735d-414a-bfef-4e1a7575f93c +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3c671846-9130-4149-b068-74287ca97b3c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=88662c00-735d-414a-bfef-4e1a7575f93c&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=3c671846-9130-4149-b068-74287ca97b3c HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00145s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: b110c989-d85e-4fe6-89e9-34204c686a68 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a7949a97-1313-44cc-bc42-0df65bb2fa60 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b110c989-d85e-4fe6-89e9-34204c686a68&request_guid=a7949a97-1313-44cc-bc42-0df65bb2fa60 HTTP/1.1" 200 2201 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83736-0502-afee-1a4b-0303c555ae07 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83736-0502-afee-1a4b-0303c555ae07 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83736-0502-afee-1a4b-0303c555ae07' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9f1646ad-cec7-4bc2-bac8-76344ad60e9e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83736-0502-afee-1a4b-0303c555ae07?request_guid=9f1646ad-cec7-4bc2-bac8-76344ad60e9e HTTP/1.1" 200 1864 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83736-0502-afee-1a4b-0303c555ae07' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e50b8b65-9b14-456d-aab8-7ff255eb7cbf +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83736-0502-afee-1a4b-0303c555ae07?request_guid=e50b8b65-9b14-456d-aab8-7ff255eb7cbf HTTP/1.1" 200 1863 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83736-0502-afee-1a4b-0303c555ae07'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 6a27e303-ca85-4693-9d03-cf364b246a8e +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83736-0502-afee-1a4b-0303c555ae07'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83736-0502-afee-1a4b-0303c555ae07'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8cc9b3d0-acd8-47e0-8d51-5dadc2bc3d49 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6a27e303-ca85-4693-9d03-cf364b246a8e&request_guid=8cc9b3d0-acd8-47e0-8d51-5dadc2bc3d49 HTTP/1.1" 200 2200 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83736-0502-afee-1a4b-0303c555ae5f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83736-0502-afee-1a4b-0303c555ae5f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 231a54f3-92a5-4273-9ce6-0985940dee91 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d26daa9b-457f-43ab-a45a-af68aff87e70 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=231a54f3-92a5-4273-9ce6-0985940dee91&request_guid=d26daa9b-457f-43ab-a45a-af68aff87e70 HTTP/1.1" 200 1784 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83736-0502-b0de-1a4b-0303c555b967 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83736-0502-b0de-1a4b-0303c555b967 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83736-0502-b0de-1a4b-0303c555b967' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 18322889-e694-47cc-b1e7-f43913190e16 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83736-0502-b0de-1a4b-0303c555b967?request_guid=18322889-e694-47cc-b1e7-f43913190e16 HTTP/1.1" 200 2178 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83736-0502-b0de-1a4b-0303c555b967' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 41b98e6c-0c85-43e0-abb0-7059375873c4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83736-0502-b0de-1a4b-0303c555b967?request_guid=41b98e6c-0c85-43e0-abb0-7059375873c4 HTTP/1.1" 200 2179 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83736-0502-b0de-1a4b-0303c555b967'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: cc180b99-7019-49c3-af34-e7a8a53c0a6c +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83736-0502-b0de-1a4b-0303c555b967'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83736-0502-b0de-1a4b-0303c555b967'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 351527db-e46b-48b1-b374-986077bccdd5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cc180b99-7019-49c3-af34-e7a8a53c0a6c&request_guid=351527db-e46b-48b1-b374-986077bccdd5 HTTP/1.1" 200 1787 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83736-0502-afee-1a4b-0303c555aeeb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83736-0502-afee-1a4b-0303c555aeeb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 7d1eaf1a-eb1b-4962-be3d-b2a8c90c64d9 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e7ba976e-6f67-40e2-8cb9-422d94a2e31b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7d1eaf1a-eb1b-4962-be3d-b2a8c90c64d9&request_guid=e7ba976e-6f67-40e2-8cb9-422d94a2e31b HTTP/1.1" 200 2195 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83736-0502-afee-1a4b-0303c555aefb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83736-0502-afee-1a4b-0303c555aefb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83736-0502-afee-1a4b-0303c555aefb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e1cd40bb-cf84-4fac-a55d-780741588fd9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83736-0502-afee-1a4b-0303c555aefb?request_guid=e1cd40bb-cf84-4fac-a55d-780741588fd9 HTTP/1.1" 200 1684 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83736-0502-afee-1a4b-0303c555aefb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c1b50d70-0499-4117-975e-5de55f80ddd9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83736-0502-afee-1a4b-0303c555aefb?request_guid=c1b50d70-0499-4117-975e-5de55f80ddd9 HTTP/1.1" 200 1684 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83736-0502-afee-1a4b-0303c555aefb'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 079a860c-84f6-4e63-97dd-9370292be249 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83736-0502-afee-1a4b-0303c555aefb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83736-0502-afee-1a4b-0303c555aefb'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9f94d3a7-e030-4ccd-ab29-c999173234b9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=079a860c-84f6-4e63-97dd-9370292be249&request_guid=9f94d3a7-e030-4ccd-ab29-c999173234b9 HTTP/1.1" 200 2193 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83736-0502-af26-1a4b-0303c555e0f3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83736-0502-af26-1a4b-0303c555e0f3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 3.015s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=035fd525-6c37-4d55-8d67-17b54b58e8a0 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9a25f930-a766-4ff4-8ef3-abf368dfd7e9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=035fd525-6c37-4d55-8d67-17b54b58e8a0&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=9a25f930-a766-4ff4-8ef3-abf368dfd7e9 HTTP/1.1" 200 1561 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 156af3a1-d1d6-444c-9cca-085085dbf7c0 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0e944888-c389-4eca-ad51-bef394ab1cb4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=156af3a1-d1d6-444c-9cca-085085dbf7c0&request_guid=0e944888-c389-4eca-ad51-bef394ab1cb4 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83736-0502-b0de-1a4b-0303c555ba8f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83736-0502-b0de-1a4b-0303c555ba8f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 333 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83736-0502-b0de-1a4b-0303c555ba8f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 317b7781-21a3-42e7-8602-2d99dd1f430c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83736-0502-b0de-1a4b-0303c555ba8f?request_guid=317b7781-21a3-42e7-8602-2d99dd1f430c HTTP/1.1" 200 2089 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83736-0502-b0de-1a4b-0303c555ba8f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b568af83-3a4e-495f-b78f-6d6dd3d64631 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83736-0502-b0de-1a4b-0303c555ba8f?request_guid=b568af83-3a4e-495f-b78f-6d6dd3d64631 HTTP/1.1" 200 2089 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83736-0502-b0de-1a4b-0303c555ba8f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 8b55a3a8-2ebc-4878-899a-dea4ee1fb063 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83736-0502-b0de-1a4b-0303c555ba8f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83736-0502-b0de-1a4b-0303c555ba8f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: eeb0b36f-810e-4ff8-aac9-994b853a9063 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=8b55a3a8-2ebc-4878-899a-dea4ee1fb063&request_guid=eeb0b36f-810e-4ff8-aac9-994b853a9063 HTTP/1.1" 200 2273 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83736-0502-af26-1a4b-0303c555e1a3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83736-0502-af26-1a4b-0303c555e1a3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83736-0502-b0de-1a4b-0303c555ba8f_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105500&Signature=DgMdoSYL2P81iBBsCXADM1vIcCU%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83736-0502-b0de-1a4b-0303c555ba8f_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105500&Signature=%2FlAOngFHFsqIzwPpf%2F2SQ%2BNb8lM%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83736-0502-b0de-1a4b-0303c555ba8f_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105500&Signature=iU2hpJjkhfgXSBBnW3YoSl%2BR9ZQ%3D HTTP/1.1" 200 279197 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83736-0502-b0de-1a4b-0303c555ba8f_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105500&Signature=O6q%2F6k3VJ2T6hXP1Zik2IiX7KSk%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1367 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 350 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a185c424-0109-4c84-84f0-7487a1b0c499 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=a185c424-0109-4c84-84f0-7487a1b0c499 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\pgfunctions.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 4.692s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 4.696s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 4.7s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=9128d360-180a-4232-9e09-f907ba958ad4 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c85a4e5d-c481-4322-b8e2-bbf529f11191 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1709289920096 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1709289920096 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1709290222064 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1709290222064 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1709290222064 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1709290222064 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1709289920096 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1709289920096 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=9128d360-180a-4232-9e09-f907ba958ad4&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=c85a4e5d-c481-4322-b8e2-bbf529f11191 HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=06c1ab43-7f7b-4300-bda4-670fb1645c11 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 99891dc4-27aa-42e3-9307-0b69dc93004a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=06c1ab43-7f7b-4300-bda4-670fb1645c11&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=99891dc4-27aa-42e3-9307-0b69dc93004a HTTP/1.1" 200 1556 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00157s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 22da5d5a-12ea-4996-bb74-6ff39f4bebb9 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a1029034-a0ce-4684-a3e8-33707cd1d948 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=22da5d5a-12ea-4996-bb74-6ff39f4bebb9&request_guid=a1029034-a0ce-4684-a3e8-33707cd1d948 HTTP/1.1" 200 2197 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8373a-0502-af26-1a4b-0303c556d333 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8373a-0502-af26-1a4b-0303c556d333 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8373a-0502-af26-1a4b-0303c556d333' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8df3f572-9d83-4e4a-86f3-429fa5295423 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8373a-0502-af26-1a4b-0303c556d333?request_guid=8df3f572-9d83-4e4a-86f3-429fa5295423 HTTP/1.1" 200 1862 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8373a-0502-af26-1a4b-0303c556d333' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 632b434a-64bd-4de0-9dd4-1eedab2e1dff +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8373a-0502-af26-1a4b-0303c556d333?request_guid=632b434a-64bd-4de0-9dd4-1eedab2e1dff HTTP/1.1" 200 1862 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8373a-0502-af26-1a4b-0303c556d333'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 5501eb0e-58be-4def-850d-9bb65ab8bfd3 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8373a-0502-af26-1a4b-0303c556d333'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8373a-0502-af26-1a4b-0303c556d333'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 84bde431-5b45-4868-945d-983e0fb60fbb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5501eb0e-58be-4def-850d-9bb65ab8bfd3&request_guid=84bde431-5b45-4868-945d-983e0fb60fbb HTTP/1.1" 200 2195 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8373a-0502-b0de-1a4b-0303c556baa3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8373a-0502-b0de-1a4b-0303c556baa3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 154b071a-960c-42af-bd9b-3e9592d05859 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6715548d-4526-4bce-adda-b6f01df9a2ef +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=154b071a-960c-42af-bd9b-3e9592d05859&request_guid=6715548d-4526-4bce-adda-b6f01df9a2ef HTTP/1.1" 200 1786 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8373a-0502-af26-1a4b-0303c556d35f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8373a-0502-af26-1a4b-0303c556d35f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8373a-0502-af26-1a4b-0303c556d35f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cc05d066-71dc-4328-8d3b-31dac5ffc31c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8373a-0502-af26-1a4b-0303c556d35f?request_guid=cc05d066-71dc-4328-8d3b-31dac5ffc31c HTTP/1.1" 200 2180 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8373a-0502-af26-1a4b-0303c556d35f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 67b228fd-cb93-48e3-a42e-c598436d9938 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8373a-0502-af26-1a4b-0303c556d35f?request_guid=67b228fd-cb93-48e3-a42e-c598436d9938 HTTP/1.1" 200 2179 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8373a-0502-af26-1a4b-0303c556d35f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: e511e69a-8e11-4622-9df4-282aca6238fe +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8373a-0502-af26-1a4b-0303c556d35f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8373a-0502-af26-1a4b-0303c556d35f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a785cb5a-1cd8-4253-859f-2d60bf3b8440 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e511e69a-8e11-4622-9df4-282aca6238fe&request_guid=a785cb5a-1cd8-4253-859f-2d60bf3b8440 HTTP/1.1" 200 1786 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8373a-0502-afee-1a4b-0303c556e197 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8373a-0502-afee-1a4b-0303c556e197 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: b464b12c-f129-4edc-836c-60d17965cf7c +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9ddfa1c1-e290-49a4-ac0b-d2aba8c2e081 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b464b12c-f129-4edc-836c-60d17965cf7c&request_guid=9ddfa1c1-e290-49a4-ac0b-d2aba8c2e081 HTTP/1.1" 200 2188 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8373a-0502-b1d6-1a4b-0303c556c5df +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8373a-0502-b1d6-1a4b-0303c556c5df +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8373a-0502-b1d6-1a4b-0303c556c5df' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 45217108-b2cf-4e6e-969b-c5cc74488209 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8373a-0502-b1d6-1a4b-0303c556c5df?request_guid=45217108-b2cf-4e6e-969b-c5cc74488209 HTTP/1.1" 200 1684 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8373a-0502-b1d6-1a4b-0303c556c5df' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0954955d-acdf-4297-9cc7-b601cbebffd3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8373a-0502-b1d6-1a4b-0303c556c5df?request_guid=0954955d-acdf-4297-9cc7-b601cbebffd3 HTTP/1.1" 200 1683 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8373a-0502-b1d6-1a4b-0303c556c5df'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 47ee0dee-698a-4474-8350-735d5b7e4aaf +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8373a-0502-b1d6-1a4b-0303c556c5df'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8373a-0502-b1d6-1a4b-0303c556c5df'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 821b00b0-1228-4575-9dd1-87f6ded77992 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=47ee0dee-698a-4474-8350-735d5b7e4aaf&request_guid=821b00b0-1228-4575-9dd1-87f6ded77992 HTTP/1.1" 200 2186 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8373a-0502-b0de-1a4b-0303c556babf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8373a-0502-b0de-1a4b-0303c556babf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 2.353s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=7069f348-4b46-4113-a12d-999d05f7efc6 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8894c41d-ba9e-4f64-896b-d69aeb369ac9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=7069f348-4b46-4113-a12d-999d05f7efc6&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=8894c41d-ba9e-4f64-896b-d69aeb369ac9 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: e0de278e-d7d9-428d-b603-b6fac89ecd10 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9a436004-6011-4807-be23-fb5fd5f4abdf +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e0de278e-d7d9-428d-b603-b6fac89ecd10&request_guid=9a436004-6011-4807-be23-fb5fd5f4abdf HTTP/1.1" 200 2273 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8373a-0502-af26-1a4b-0303c556d3db +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8373a-0502-af26-1a4b-0303c556d3db +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8373a-0502-af26-1a4b-0303c556d3db' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 72820952-4d88-4a29-9f37-f33a6b24edb3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8373a-0502-af26-1a4b-0303c556d3db?request_guid=72820952-4d88-4a29-9f37-f33a6b24edb3 HTTP/1.1" 200 1946 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8373a-0502-af26-1a4b-0303c556d3db' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6bb14caa-2859-41d1-ad53-0979307473ba +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8373a-0502-af26-1a4b-0303c556d3db?request_guid=6bb14caa-2859-41d1-ad53-0979307473ba HTTP/1.1" 200 1943 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8373a-0502-af26-1a4b-0303c556d3db'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: a9742478-fede-440e-aeed-e7a333251146 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8373a-0502-af26-1a4b-0303c556d3db'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8373a-0502-af26-1a4b-0303c556d3db'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6f1ffd16-9116-472c-99d5-9f1580001c9d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a9742478-fede-440e-aeed-e7a333251146&request_guid=6f1ffd16-9116-472c-99d5-9f1580001c9d HTTP/1.1" 200 2275 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8373a-0502-afee-1a4b-0303c556e217 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8373a-0502-afee-1a4b-0303c556e217 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83736-0502-b0de-1a4b-0303c555ba8f_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105743&Signature=cJJWxoQH8T8W7Ti4IBnM4Jp3Guo%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83736-0502-b0de-1a4b-0303c555ba8f_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105743&Signature=GperWf81fwi%2F8eOVp5y467468ak%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83736-0502-b0de-1a4b-0303c555ba8f_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105743&Signature=alTMpTfx8hXTNSGl%2F3ohPBPRtA4%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83736-0502-b0de-1a4b-0303c555ba8f_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668105743&Signature=Vq%2BDbAhrigLflBbYS%2F1SsCvQiI8%3D HTTP/1.1" 200 279197 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1367 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 350 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 77759141-abe8-4906-a6ff-8993ec0677a6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=77759141-abe8-4906-a6ff-8993ec0677a6 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.241s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.246s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.25s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=7d522c59-aad7-420a-a571-4f593cb239b6 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c7f32528-45c2-492d-8963-c1047328d2c4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1745971909280 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1745971909280 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1745972211248 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1745972211248 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1745972211248 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1745972211248 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1745971909280 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1745971909280 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=7d522c59-aad7-420a-a571-4f593cb239b6&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=c7f32528-45c2-492d-8963-c1047328d2c4 HTTP/1.1" 200 1549 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=9ceec5af-7ee6-4d5b-96a4-fafb9672054e +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6fce04eb-7636-4d47-8fcc-f905931c6af6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=9ceec5af-7ee6-4d5b-96a4-fafb9672054e&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=6fce04eb-7636-4d47-8fcc-f905931c6af6 HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00220s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 936fdede-bef7-45c0-bfe3-7f0685ce3347 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8653951b-1112-4236-896f-72d120d37b03 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=936fdede-bef7-45c0-bfe3-7f0685ce3347&request_guid=8653951b-1112-4236-896f-72d120d37b03 HTTP/1.1" 200 2199 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83742-0502-ae87-1a4b-0303c558da73 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83742-0502-ae87-1a4b-0303c558da73 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83742-0502-ae87-1a4b-0303c558da73' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 720a32e0-2846-4e96-b8b6-89e1ff9ce91e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83742-0502-ae87-1a4b-0303c558da73?request_guid=720a32e0-2846-4e96-b8b6-89e1ff9ce91e HTTP/1.1" 200 1864 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83742-0502-ae87-1a4b-0303c558da73' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 78d0d61a-d34f-4deb-974b-7b5531f1dd12 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83742-0502-ae87-1a4b-0303c558da73?request_guid=78d0d61a-d34f-4deb-974b-7b5531f1dd12 HTTP/1.1" 200 1863 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83742-0502-ae87-1a4b-0303c558da73'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 842e1c24-745b-432b-8890-326c2e213fa0 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83742-0502-ae87-1a4b-0303c558da73'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83742-0502-ae87-1a4b-0303c558da73'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 25556d1c-8732-4a4c-9e20-f0cd71ae8890 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=842e1c24-745b-432b-8890-326c2e213fa0&request_guid=25556d1c-8732-4a4c-9e20-f0cd71ae8890 HTTP/1.1" 200 2197 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83742-0502-af26-1a4b-0303c55900d3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83742-0502-af26-1a4b-0303c55900d3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 7.109s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 7.113s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 7.12s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=444cdc36-2675-4442-b719-8c95ec941698 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8f97fed9-6867-45eb-a2b2-e2d726f852f3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1462691353248 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1462691353248 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1462691671600 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1462691671600 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1462691671600 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1462691671600 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1462691353248 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1462691353248 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=444cdc36-2675-4442-b719-8c95ec941698&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=8f97fed9-6867-45eb-a2b2-e2d726f852f3 HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=b0e31ecf-700e-4729-bb47-999397ee9b95 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ef156911-7db1-4577-a54e-d9e2d9d0544e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=b0e31ecf-700e-4729-bb47-999397ee9b95&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=ef156911-7db1-4577-a54e-d9e2d9d0544e HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00246s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 4e8b81ff-ff13-4fed-92e6-f3c65c25a010 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c7085423-ae8a-4733-9a93-5611e1dba24b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4e8b81ff-ff13-4fed-92e6-f3c65c25a010&request_guid=c7085423-ae8a-4733-9a93-5611e1dba24b HTTP/1.1" 200 2198 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83746-0502-af26-1a4b-0303c559cbb3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83746-0502-af26-1a4b-0303c559cbb3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83746-0502-af26-1a4b-0303c559cbb3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5cd29882-1b58-4b3b-b374-cd6657f7da79 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83746-0502-af26-1a4b-0303c559cbb3?request_guid=5cd29882-1b58-4b3b-b374-cd6657f7da79 HTTP/1.1" 200 1861 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83746-0502-af26-1a4b-0303c559cbb3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 29bda076-2633-4fe1-9c13-83a97fdde4f2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83746-0502-af26-1a4b-0303c559cbb3?request_guid=29bda076-2633-4fe1-9c13-83a97fdde4f2 HTTP/1.1" 200 1860 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83746-0502-af26-1a4b-0303c559cbb3'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 1c672faf-4e46-4688-9466-297c2eaaae52 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83746-0502-af26-1a4b-0303c559cbb3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83746-0502-af26-1a4b-0303c559cbb3'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2cc73698-5cf4-453c-a3b1-31ad2144792b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1c672faf-4e46-4688-9466-297c2eaaae52&request_guid=2cc73698-5cf4-453c-a3b1-31ad2144792b HTTP/1.1" 200 2197 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83746-0502-af26-1a4b-0303c559cbe3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83746-0502-af26-1a4b-0303c559cbe3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 8c2a5af8-6640-4c49-b681-7b20c56b675d +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0abbcdec-3915-4d9d-b4d6-6c2e49373dd9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=8c2a5af8-6640-4c49-b681-7b20c56b675d&request_guid=0abbcdec-3915-4d9d-b4d6-6c2e49373dd9 HTTP/1.1" 200 1785 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83746-0502-af26-1a4b-0303c559cbf3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83746-0502-af26-1a4b-0303c559cbf3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83746-0502-af26-1a4b-0303c559cbf3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 75a5eb5a-2f88-4c6a-a7f1-a954daf07446 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83746-0502-af26-1a4b-0303c559cbf3?request_guid=75a5eb5a-2f88-4c6a-a7f1-a954daf07446 HTTP/1.1" 200 2178 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83746-0502-af26-1a4b-0303c559cbf3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8ef6b418-e654-463f-9ef7-b26bfee7a13d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83746-0502-af26-1a4b-0303c559cbf3?request_guid=8ef6b418-e654-463f-9ef7-b26bfee7a13d HTTP/1.1" 200 2178 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83746-0502-af26-1a4b-0303c559cbf3'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: f0693968-2b1d-469d-93ec-f46efa1cfc0d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83746-0502-af26-1a4b-0303c559cbf3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83746-0502-af26-1a4b-0303c559cbf3'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 670c4661-b26b-4a29-955a-1d68171f1547 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f0693968-2b1d-469d-93ec-f46efa1cfc0d&request_guid=670c4661-b26b-4a29-955a-1d68171f1547 HTTP/1.1" 200 1784 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83746-0502-b0de-1a4b-0303c559e4e7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83746-0502-b0de-1a4b-0303c559e4e7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 2148fc33-d9a1-4152-a1ca-dc5063f36310 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 49c25fb5-4280-4506-9371-a8d9ebf58dda +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2148fc33-d9a1-4152-a1ca-dc5063f36310&request_guid=49c25fb5-4280-4506-9371-a8d9ebf58dda HTTP/1.1" 200 2192 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83746-0502-af26-1a4b-0303c559cc43 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83746-0502-af26-1a4b-0303c559cc43 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83746-0502-af26-1a4b-0303c559cc43' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 46882363-ebc1-4a87-abf6-3508d904eb42 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83746-0502-af26-1a4b-0303c559cc43?request_guid=46882363-ebc1-4a87-abf6-3508d904eb42 HTTP/1.1" 200 1689 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83746-0502-af26-1a4b-0303c559cc43' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3648bf73-c4af-486d-ac94-a18338dc7946 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83746-0502-af26-1a4b-0303c559cc43?request_guid=3648bf73-c4af-486d-ac94-a18338dc7946 HTTP/1.1" 200 1691 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83746-0502-af26-1a4b-0303c559cc43'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 01a324c8-c48b-4eab-bf41-7786f3e309d1 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83746-0502-af26-1a4b-0303c559cc43'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83746-0502-af26-1a4b-0303c559cc43'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 098b71a5-7227-4e84-84b7-ab088bd1f164 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=01a324c8-c48b-4eab-bf41-7786f3e309d1&request_guid=098b71a5-7227-4e84-84b7-ab088bd1f164 HTTP/1.1" 200 2192 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83746-0502-af26-1a4b-0303c559cc5b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83746-0502-af26-1a4b-0303c559cc5b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 17.23s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=158b3825-50f6-4fa2-a444-b515a93390bc +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 04059d7f-40d3-42ce-8f6b-530b961f9e71 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=158b3825-50f6-4fa2-a444-b515a93390bc&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=04059d7f-40d3-42ce-8f6b-530b961f9e71 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,HEADER_CHANGE_SEQ,HEADER_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 8bacdd85-88ca-4032-86f6-c902efbf3724 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,HEADER_CHANGE_SEQ,HEADER_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,HEADER_CHANGE_SEQ,HEADER_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 26ba790e-59b7-4347-9d61-f062029e5a15 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=8bacdd85-88ca-4032-86f6-c902efbf3724&request_guid=26ba790e-59b7-4347-9d61-f062029e5a15 HTTP/1.1" 200 386 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = 000904, after post request +DEBUG:snowflake.connector.network:Query id: 01a83746-0502-af26-1a4b-0303c559ccff +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83746-0502-af26-1a4b-0303c559ccff +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:{'data': {'internalError': False, 'errorCode': '000904', 'age': 0, 'sqlState': '42000', 'queryId': '01a83746-0502-af26-1a4b-0303c559ccff', 'line': -1, 'pos': -1, 'type': 'COMPILATION'}, 'code': '000904', 'message': "SQL compilation error: error line 1 at position 55\ninvalid identifier 'HEADER_CHANGE_SEQ'", 'success': False, 'headers': None} +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:54:49] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:54:49] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:54:49] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:54:50] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 07:54:50] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.8314s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.8369s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.9053s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=7dc97380-be06-48ac-b5fb-f65c2e8890e9 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cbac8025-d137-480e-b9ce-a74f82b637a4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1937775531760 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1937775531760 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1937775850112 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1937775850112 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1937775850112 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1937775850112 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1937775531760 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1937775531760 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=7dc97380-be06-48ac-b5fb-f65c2e8890e9&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=cbac8025-d137-480e-b9ce-a74f82b637a4 HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=261765a6-937f-4918-bd6e-01b275cedb40 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7703ec90-efe6-412e-89d7-b961fc26f7f3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=261765a6-937f-4918-bd6e-01b275cedb40&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=7703ec90-efe6-412e-89d7-b961fc26f7f3 HTTP/1.1" 200 1556 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.02386s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 51dee999-b654-4345-9ad0-96a1d562dd3f +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 98fb44ea-ee66-4923-b2ae-4311d0986315 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=51dee999-b654-4345-9ad0-96a1d562dd3f&request_guid=98fb44ea-ee66-4923-b2ae-4311d0986315 HTTP/1.1" 200 2199 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83749-0502-ae87-1a4b-0303c55a596f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83749-0502-ae87-1a4b-0303c55a596f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83749-0502-ae87-1a4b-0303c55a596f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ccab7139-4037-4f67-968d-66ddef86cd50 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83749-0502-ae87-1a4b-0303c55a596f?request_guid=ccab7139-4037-4f67-968d-66ddef86cd50 HTTP/1.1" 200 1857 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83749-0502-ae87-1a4b-0303c55a596f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4611ef8d-7516-431e-835e-b408182f70fc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83749-0502-ae87-1a4b-0303c55a596f?request_guid=4611ef8d-7516-431e-835e-b408182f70fc HTTP/1.1" 200 1857 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83749-0502-ae87-1a4b-0303c55a596f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 06a933e3-fab1-4460-9f07-c3b7ac8a44cb +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83749-0502-ae87-1a4b-0303c55a596f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83749-0502-ae87-1a4b-0303c55a596f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ab662236-a16a-4d0a-b40e-dbe781f8fcb9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=06a933e3-fab1-4460-9f07-c3b7ac8a44cb&request_guid=ab662236-a16a-4d0a-b40e-dbe781f8fcb9 HTTP/1.1" 200 2195 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83749-0502-b0de-1a4b-0303c55a689b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83749-0502-b0de-1a4b-0303c55a689b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 57121fee-de74-4420-924e-65d366c6401e +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ec4cc673-b31c-4ee3-a883-daa28c0e0996 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=57121fee-de74-4420-924e-65d366c6401e&request_guid=ec4cc673-b31c-4ee3-a883-daa28c0e0996 HTTP/1.1" 200 1783 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83749-0502-b0de-1a4b-0303c55a68a7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83749-0502-b0de-1a4b-0303c55a68a7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83749-0502-b0de-1a4b-0303c55a68a7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 05949c8d-d083-4293-9f3e-dc8dc05eaf6c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83749-0502-b0de-1a4b-0303c55a68a7?request_guid=05949c8d-d083-4293-9f3e-dc8dc05eaf6c HTTP/1.1" 200 2177 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83749-0502-b0de-1a4b-0303c55a68a7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f61553cc-4809-443f-9c81-45bb2d7d8a8d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83749-0502-b0de-1a4b-0303c55a68a7?request_guid=f61553cc-4809-443f-9c81-45bb2d7d8a8d HTTP/1.1" 200 2177 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83749-0502-b0de-1a4b-0303c55a68a7'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 1f0f26c1-9c37-4ac9-b0bf-05dc920d344c +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83749-0502-b0de-1a4b-0303c55a68a7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83749-0502-b0de-1a4b-0303c55a68a7'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 37a8c053-d2ee-4e44-b755-3572f2720ca7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1f0f26c1-9c37-4ac9-b0bf-05dc920d344c&request_guid=37a8c053-d2ee-4e44-b755-3572f2720ca7 HTTP/1.1" 200 1783 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83749-0502-b0de-1a4b-0303c55a68f3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83749-0502-b0de-1a4b-0303c55a68f3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 218fa00e-b49e-49bc-8699-271192711d95 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 13b41376-24a7-45e1-8abc-6b7350f078da +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=218fa00e-b49e-49bc-8699-271192711d95&request_guid=13b41376-24a7-45e1-8abc-6b7350f078da HTTP/1.1" 200 2191 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83749-0502-af26-1a4b-0303c55a8073 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83749-0502-af26-1a4b-0303c55a8073 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83749-0502-af26-1a4b-0303c55a8073' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 18005114-9abc-4414-8770-ab291d222e73 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83749-0502-af26-1a4b-0303c55a8073?request_guid=18005114-9abc-4414-8770-ab291d222e73 HTTP/1.1" 200 1689 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83749-0502-af26-1a4b-0303c55a8073' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e68194dd-0b73-4230-9d1b-f8605681f823 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83749-0502-af26-1a4b-0303c55a8073?request_guid=e68194dd-0b73-4230-9d1b-f8605681f823 HTTP/1.1" 200 1691 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83749-0502-af26-1a4b-0303c55a8073'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: a6c48c16-1a93-4988-8d99-6b69eea186b8 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83749-0502-af26-1a4b-0303c55a8073'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83749-0502-af26-1a4b-0303c55a8073'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 691df7ae-bfb1-4296-8338-6ab3bfa3c23d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a6c48c16-1a93-4988-8d99-6b69eea186b8&request_guid=691df7ae-bfb1-4296-8338-6ab3bfa3c23d HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83749-0502-af26-1a4b-0303c55a80af +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83749-0502-af26-1a4b-0303c55a80af +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 12.13s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=42539df6-7846-479e-a1a2-b7b915004880 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bd4bb86c-5043-4535-8f7f-140e35955532 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=42539df6-7846-479e-a1a2-b7b915004880&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=bd4bb86c-5043-4535-8f7f-140e35955532 HTTP/1.1" 200 1548 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: a05cc463-672c-4062-a447-9bb91c33812b +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e0b916d9-52d5-4d2e-821e-4c15828e8afd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a05cc463-672c-4062-a447-9bb91c33812b&request_guid=e0b916d9-52d5-4d2e-821e-4c15828e8afd HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83749-0502-ae87-1a4b-0303c55a5ac7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83749-0502-ae87-1a4b-0303c55a5ac7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 333 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83749-0502-ae87-1a4b-0303c55a5ac7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 196d7ddc-0761-4ec1-bf78-128539d5d34d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83749-0502-ae87-1a4b-0303c55a5ac7?request_guid=196d7ddc-0761-4ec1-bf78-128539d5d34d HTTP/1.1" 200 2097 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83749-0502-ae87-1a4b-0303c55a5ac7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 67ea1918-834a-4deb-bf32-54b0821142b1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83749-0502-ae87-1a4b-0303c55a5ac7?request_guid=67ea1918-834a-4deb-bf32-54b0821142b1 HTTP/1.1" 200 2097 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83749-0502-ae87-1a4b-0303c55a5ac7'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 068546a2-0741-48a3-baa2-afe215ed64ff +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83749-0502-ae87-1a4b-0303c55a5ac7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83749-0502-ae87-1a4b-0303c55a5ac7'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7908fa44-7217-4bc3-85a9-fbe7a49253de +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=068546a2-0741-48a3-baa2-afe215ed64ff&request_guid=7908fa44-7217-4bc3-85a9-fbe7a49253de HTTP/1.1" 200 2278 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83749-0502-af26-1a4b-0303c55a824b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83749-0502-af26-1a4b-0303c55a824b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83749-0502-ae87-1a4b-0303c55a5ac7_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668106630&Signature=H%2BHTVQrC8AhXnm9N10kd9L0EU84%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83749-0502-ae87-1a4b-0303c55a5ac7_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668106630&Signature=CMPRoRg99AfKhpIGJjCjujS3U9o%3D HTTP/1.1" 200 303346 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83749-0502-ae87-1a4b-0303c55a5ac7_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668106630&Signature=yqC4P7Cpzq3h5xM3ALq4uZiI6zc%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83749-0502-ae87-1a4b-0303c55a5ac7_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668106630&Signature=tpyV1tTBo%2FoU92lwozt%2FOtFqRJc%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1367 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 746 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a718ec4c-9975-49d7-8658-75c8fa58e34b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=a718ec4c-9975-49d7-8658-75c8fa58e34b HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.033s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.038s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.042s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=dbcff168-6950-40e7-99a9-65efecfc0f91 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 93546c22-46f5-4f77-9cdd-d02cab93f5e9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1444173289200 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1444173289200 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1444173623936 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1444173623936 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1444173623936 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1444173623936 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1444173289200 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1444173289200 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=dbcff168-6950-40e7-99a9-65efecfc0f91&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=93546c22-46f5-4f77-9cdd-d02cab93f5e9 HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=bc3632da-12ff-4ee0-bd36-ba6f17e10069 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 224db10f-15ba-4a2b-89b8-b0cc6546a65a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=bc3632da-12ff-4ee0-bd36-ba6f17e10069&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=224db10f-15ba-4a2b-89b8-b0cc6546a65a HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00206s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 32897a0a-814a-45d7-b97c-6657959afeed +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 53604318-bcff-430d-87dc-db301b360a94 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=32897a0a-814a-45d7-b97c-6657959afeed&request_guid=53604318-bcff-430d-87dc-db301b360a94 HTTP/1.1" 200 2199 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8374c-0502-ae87-1a4b-0303c55b19ab +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8374c-0502-ae87-1a4b-0303c55b19ab +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8374c-0502-ae87-1a4b-0303c55b19ab' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 11cadf79-d4a8-4f72-a6eb-8f1f2a63389f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8374c-0502-ae87-1a4b-0303c55b19ab?request_guid=11cadf79-d4a8-4f72-a6eb-8f1f2a63389f HTTP/1.1" 200 1872 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8374c-0502-ae87-1a4b-0303c55b19ab' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0a398a28-4666-45a5-bca4-91b26a101ed6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8374c-0502-ae87-1a4b-0303c55b19ab?request_guid=0a398a28-4666-45a5-bca4-91b26a101ed6 HTTP/1.1" 200 1873 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8374c-0502-ae87-1a4b-0303c55b19ab'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: f86d2ed3-cf64-4aac-83fd-2e37cb87d3bd +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8374c-0502-ae87-1a4b-0303c55b19ab'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8374c-0502-ae87-1a4b-0303c55b19ab'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b127630a-f595-4bf6-b8d0-6c8e3edf7194 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f86d2ed3-cf64-4aac-83fd-2e37cb87d3bd&request_guid=b127630a-f595-4bf6-b8d0-6c8e3edf7194 HTTP/1.1" 200 2196 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8374c-0502-b1d6-1a4b-0303c55b358f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8374c-0502-b1d6-1a4b-0303c55b358f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 8df2cb92-55a8-4676-8743-d3c48b577a6f +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c9a8d8ff-1bcf-4c65-80fc-cdc66cfa8400 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=8df2cb92-55a8-4676-8743-d3c48b577a6f&request_guid=c9a8d8ff-1bcf-4c65-80fc-cdc66cfa8400 HTTP/1.1" 200 1784 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8374c-0502-b1d6-1a4b-0303c55b359b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8374c-0502-b1d6-1a4b-0303c55b359b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8374c-0502-b1d6-1a4b-0303c55b359b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4df3946a-635b-496d-90ec-650da199ed3b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8374c-0502-b1d6-1a4b-0303c55b359b?request_guid=4df3946a-635b-496d-90ec-650da199ed3b HTTP/1.1" 200 2177 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8374c-0502-b1d6-1a4b-0303c55b359b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bf7af3cb-a1f9-4c9e-9706-aba58be03c40 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8374c-0502-b1d6-1a4b-0303c55b359b?request_guid=bf7af3cb-a1f9-4c9e-9706-aba58be03c40 HTTP/1.1" 200 2178 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8374c-0502-b1d6-1a4b-0303c55b359b'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: c6cd1a80-8897-45d7-9407-9711a9806fc1 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8374c-0502-b1d6-1a4b-0303c55b359b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8374c-0502-b1d6-1a4b-0303c55b359b'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9a1c7709-1b7d-450f-9093-d4695197a98f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c6cd1a80-8897-45d7-9407-9711a9806fc1&request_guid=9a1c7709-1b7d-450f-9093-d4695197a98f HTTP/1.1" 200 1782 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8374c-0502-b1d6-1a4b-0303c55b35eb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8374c-0502-b1d6-1a4b-0303c55b35eb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 98664e0e-426e-4e32-8a09-720d27e44211 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7ca5a79d-5280-4ec3-b525-188bb6ac6d7b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=98664e0e-426e-4e32-8a09-720d27e44211&request_guid=7ca5a79d-5280-4ec3-b525-188bb6ac6d7b HTTP/1.1" 200 2193 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8374c-0502-ae87-1a4b-0303c55b1b1f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8374c-0502-ae87-1a4b-0303c55b1b1f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8374c-0502-ae87-1a4b-0303c55b1b1f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 69efe4bc-6d23-4bf4-a3e6-ad7e74004d53 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8374c-0502-ae87-1a4b-0303c55b1b1f?request_guid=69efe4bc-6d23-4bf4-a3e6-ad7e74004d53 HTTP/1.1" 200 1686 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8374c-0502-ae87-1a4b-0303c55b1b1f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 87be70f3-f438-4b4a-92fa-0633b6c5ccee +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8374c-0502-ae87-1a4b-0303c55b1b1f?request_guid=87be70f3-f438-4b4a-92fa-0633b6c5ccee HTTP/1.1" 200 1687 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8374c-0502-ae87-1a4b-0303c55b1b1f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 20dc48c3-5259-4470-81f4-5a709d8699f1 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8374c-0502-ae87-1a4b-0303c55b1b1f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8374c-0502-ae87-1a4b-0303c55b1b1f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bc5f21e4-4e26-4880-b973-6651f88c4d13 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=20dc48c3-5259-4470-81f4-5a709d8699f1&request_guid=bc5f21e4-4e26-4880-b973-6651f88c4d13 HTTP/1.1" 200 2190 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8374c-0502-b0de-1a4b-0303c55b288f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8374c-0502-b0de-1a4b-0303c55b288f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.5538s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.5643s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.5707s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=9edf7e5c-136f-431a-91e0-1d09c0c6fe18 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: de80895a-e0af-4ee9-8962-924874167379 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1376267671280 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1376267671280 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1376268006016 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1376268006016 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1376268006016 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1376268006016 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1376267671280 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1376267671280 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=9edf7e5c-136f-431a-91e0-1d09c0c6fe18&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=de80895a-e0af-4ee9-8962-924874167379 HTTP/1.1" 200 1557 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=1c72c17a-3013-484d-a165-03112e1059d4 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 13c13be1-a535-4ab4-8267-2284c35ff89c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=1c72c17a-3013-484d-a165-03112e1059d4&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=13c13be1-a535-4ab4-8267-2284c35ff89c HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00152s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 805565b4-4cc7-4eab-a49b-4bfe1b0e2600 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6a4d5838-656b-4679-94e4-f0e8a471ab57 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=805565b4-4cc7-4eab-a49b-4bfe1b0e2600&request_guid=6a4d5838-656b-4679-94e4-f0e8a471ab57 HTTP/1.1" 200 2197 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8374e-0502-af26-1a4b-0303c55bac4b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8374e-0502-af26-1a4b-0303c55bac4b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8374e-0502-af26-1a4b-0303c55bac4b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 306e5123-11c7-4df3-bad6-b2d9e6f9a57f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8374e-0502-af26-1a4b-0303c55bac4b?request_guid=306e5123-11c7-4df3-bad6-b2d9e6f9a57f HTTP/1.1" 200 1864 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8374e-0502-af26-1a4b-0303c55bac4b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0a5e6ab7-99bc-446b-a661-f74fa2dd1e2c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8374e-0502-af26-1a4b-0303c55bac4b?request_guid=0a5e6ab7-99bc-446b-a661-f74fa2dd1e2c HTTP/1.1" 200 1864 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8374e-0502-af26-1a4b-0303c55bac4b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 16bb907e-b4c1-455f-807f-13cbb3bd157d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8374e-0502-af26-1a4b-0303c55bac4b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8374e-0502-af26-1a4b-0303c55bac4b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c6c7a6be-0ac0-4bab-bcf3-a99cb026e7e2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=16bb907e-b4c1-455f-807f-13cbb3bd157d&request_guid=c6c7a6be-0ac0-4bab-bcf3-a99cb026e7e2 HTTP/1.1" 200 2196 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8374e-0502-b0de-1a4b-0303c55bc5e7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8374e-0502-b0de-1a4b-0303c55bc5e7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 191d14d9-2906-47d9-9ef2-8b5f6ff1e26f +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d0d21ead-022f-488b-8780-8fb2f32f3a43 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=191d14d9-2906-47d9-9ef2-8b5f6ff1e26f&request_guid=d0d21ead-022f-488b-8780-8fb2f32f3a43 HTTP/1.1" 200 1784 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8374e-0502-af26-1a4b-0303c55bacbb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8374e-0502-af26-1a4b-0303c55bacbb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8374e-0502-af26-1a4b-0303c55bacbb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e6d088a9-081c-4783-9910-1f9f2b4a51c7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8374e-0502-af26-1a4b-0303c55bacbb?request_guid=e6d088a9-081c-4783-9910-1f9f2b4a51c7 HTTP/1.1" 200 2177 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8374e-0502-af26-1a4b-0303c55bacbb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 06d918bb-c0b4-484c-b2e2-ddd0d888ffec +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8374e-0502-af26-1a4b-0303c55bacbb?request_guid=06d918bb-c0b4-484c-b2e2-ddd0d888ffec HTTP/1.1" 200 2176 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8374e-0502-af26-1a4b-0303c55bacbb'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: fe1f4b19-074c-47ba-9ced-87bd16c19fe9 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8374e-0502-af26-1a4b-0303c55bacbb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8374e-0502-af26-1a4b-0303c55bacbb'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 121c325e-dba3-4a86-bd98-ad6e251312a1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=fe1f4b19-074c-47ba-9ced-87bd16c19fe9&request_guid=121c325e-dba3-4a86-bd98-ad6e251312a1 HTTP/1.1" 200 1784 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8374e-0502-b0de-1a4b-0303c55bc687 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8374e-0502-b0de-1a4b-0303c55bc687 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: d578d3f0-4adf-40c8-88a7-d70d22dc817e +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 08dd3238-013f-488e-bb4f-f467f1c6108e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d578d3f0-4adf-40c8-88a7-d70d22dc817e&request_guid=08dd3238-013f-488e-bb4f-f467f1c6108e HTTP/1.1" 200 2192 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8374e-0502-af26-1a4b-0303c55bad9f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8374e-0502-af26-1a4b-0303c55bad9f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8374e-0502-af26-1a4b-0303c55bad9f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e622e3eb-c84f-4a61-9d8b-f057976e2f3b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8374e-0502-af26-1a4b-0303c55bad9f?request_guid=e622e3eb-c84f-4a61-9d8b-f057976e2f3b HTTP/1.1" 200 1686 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8374e-0502-af26-1a4b-0303c55bad9f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2762be8b-c40e-472d-9894-016ac4e46e15 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8374e-0502-af26-1a4b-0303c55bad9f?request_guid=2762be8b-c40e-472d-9894-016ac4e46e15 HTTP/1.1" 200 1687 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8374e-0502-af26-1a4b-0303c55bad9f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 8d2f6dab-9284-4711-bdf3-c9f5056081a5 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8374e-0502-af26-1a4b-0303c55bad9f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8374e-0502-af26-1a4b-0303c55bad9f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b2b85af2-062f-4e98-bb05-f2e9cd4e3544 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=8d2f6dab-9284-4711-bdf3-c9f5056081a5&request_guid=b2b85af2-062f-4e98-bb05-f2e9cd4e3544 HTTP/1.1" 200 2190 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8374e-0502-af26-1a4b-0303c55badbf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8374e-0502-af26-1a4b-0303c55badbf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 22.64s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=bb6fc100-d651-4da9-b1d0-03daab9ff487 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8f6431ac-c658-4f73-8ab4-7f9fc8482131 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=bb6fc100-d651-4da9-b1d0-03daab9ff487&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=8f6431ac-c658-4f73-8ab4-7f9fc8482131 HTTP/1.1" 200 1558 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: fb78de6b-bc1a-4c5b-9c83-d88f398a962b +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ed87edca-4e7e-4f5f-a92c-9225b6f0bcbd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=fb78de6b-bc1a-4c5b-9c83-d88f398a962b&request_guid=ed87edca-4e7e-4f5f-a92c-9225b6f0bcbd HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8374e-0502-ae87-1a4b-0303c55be39b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8374e-0502-ae87-1a4b-0303c55be39b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 333 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8374e-0502-ae87-1a4b-0303c55be39b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c949a8ec-a772-4c79-82ab-0c728f10e698 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8374e-0502-ae87-1a4b-0303c55be39b?request_guid=c949a8ec-a772-4c79-82ab-0c728f10e698 HTTP/1.1" 200 2089 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8374e-0502-ae87-1a4b-0303c55be39b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 724d6e6e-cfe1-44f1-b896-5a0f8e56e2cc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8374e-0502-ae87-1a4b-0303c55be39b?request_guid=724d6e6e-cfe1-44f1-b896-5a0f8e56e2cc HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8374e-0502-ae87-1a4b-0303c55be39b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: a9ae8638-ac85-479c-bf6c-ab73e4e258bc +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8374e-0502-ae87-1a4b-0303c55be39b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8374e-0502-ae87-1a4b-0303c55be39b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e041cbcd-e234-44cd-8f09-98091bf6848f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a9ae8638-ac85-479c-bf6c-ab73e4e258bc&request_guid=e041cbcd-e234-44cd-8f09-98091bf6848f HTTP/1.1" 200 2273 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8374e-0502-ae87-1a4b-0303c55be423 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8374e-0502-ae87-1a4b-0303c55be423 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8374e-0502-ae87-1a4b-0303c55be39b_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668106952&Signature=lQ5IdNiDqzQakyK14YpVXqJRkCI%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8374e-0502-ae87-1a4b-0303c55be39b_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668106952&Signature=Wgdw1CQ1rVRQMeRbYiL9yYNJVSQ%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8374e-0502-ae87-1a4b-0303c55be39b_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668106952&Signature=Va7JqOKgWF%2BS1F0xkXR0Z0ERw2g%3D HTTP/1.1" 200 311220 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8374e-0502-ae87-1a4b-0303c55be39b_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668106952&Signature=wgX6R0623GPDRsld%2BCVT0bpSVYM%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1367 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 878 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 084ceebe-ba2b-4e5c-b2c4-81e384c66536 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=084ceebe-ba2b-4e5c-b2c4-81e384c66536 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.941s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.947s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.951s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=bac05639-d874-412e-9ca5-3da8359fecd3 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 069f54db-3d2d-4ade-9157-97605652b3f1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2263270741888 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2263270741888 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2263271076672 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2263271076672 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2263271076672 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2263271076672 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2263270741888 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2263270741888 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=bac05639-d874-412e-9ca5-3da8359fecd3&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=069f54db-3d2d-4ade-9157-97605652b3f1 HTTP/1.1" 200 1558 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=34dd3a7b-82c8-432f-82bb-699ba2988d49 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3857a046-d773-4829-a47b-55faee0e79c9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=34dd3a7b-82c8-432f-82bb-699ba2988d49&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=3857a046-d773-4829-a47b-55faee0e79c9 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00177s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 472488e4-2031-40a0-b1ac-3cc237c19206 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9c309af0-2763-4ff0-ba33-27c3c643f3d1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=472488e4-2031-40a0-b1ac-3cc237c19206&request_guid=9c309af0-2763-4ff0-ba33-27c3c643f3d1 HTTP/1.1" 200 2199 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83751-0502-ae87-1a4b-0303c55cc0a3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83751-0502-ae87-1a4b-0303c55cc0a3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83751-0502-ae87-1a4b-0303c55cc0a3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e3405bb4-ec3b-4714-8ed4-3d4fee03ef89 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83751-0502-ae87-1a4b-0303c55cc0a3?request_guid=e3405bb4-ec3b-4714-8ed4-3d4fee03ef89 HTTP/1.1" 200 1857 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83751-0502-ae87-1a4b-0303c55cc0a3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fb919862-8597-4df8-a267-5c78aa43a5a2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83751-0502-ae87-1a4b-0303c55cc0a3?request_guid=fb919862-8597-4df8-a267-5c78aa43a5a2 HTTP/1.1" 200 1855 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83751-0502-ae87-1a4b-0303c55cc0a3'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 3d980103-8ec7-44d1-84e7-4cf30b718e5a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83751-0502-ae87-1a4b-0303c55cc0a3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83751-0502-ae87-1a4b-0303c55cc0a3'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 477238b3-f433-45bd-a92e-ae4d3ae52046 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3d980103-8ec7-44d1-84e7-4cf30b718e5a&request_guid=477238b3-f433-45bd-a92e-ae4d3ae52046 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83751-0502-b0de-1a4b-0303c55c9c6b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83751-0502-b0de-1a4b-0303c55c9c6b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: a2c93365-b118-4753-96c0-06171f6e3d95 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c3ecce62-9149-4564-8929-7c666aa9bb10 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a2c93365-b118-4753-96c0-06171f6e3d95&request_guid=c3ecce62-9149-4564-8929-7c666aa9bb10 HTTP/1.1" 200 1784 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83751-0502-b0de-1a4b-0303c55c9c7b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83751-0502-b0de-1a4b-0303c55c9c7b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83751-0502-b0de-1a4b-0303c55c9c7b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4b06309b-9943-4a85-997e-78776bdef28d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83751-0502-b0de-1a4b-0303c55c9c7b?request_guid=4b06309b-9943-4a85-997e-78776bdef28d HTTP/1.1" 200 2184 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83751-0502-b0de-1a4b-0303c55c9c7b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 688e3bfd-c555-409f-b21e-70fefaf46d69 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83751-0502-b0de-1a4b-0303c55c9c7b?request_guid=688e3bfd-c555-409f-b21e-70fefaf46d69 HTTP/1.1" 200 2181 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83751-0502-b0de-1a4b-0303c55c9c7b'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 35366e6f-e3ff-4f61-b1ef-6f03b86e52be +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83751-0502-b0de-1a4b-0303c55c9c7b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83751-0502-b0de-1a4b-0303c55c9c7b'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 13deacee-afa1-4639-9a5d-7287292618fc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=35366e6f-e3ff-4f61-b1ef-6f03b86e52be&request_guid=13deacee-afa1-4639-9a5d-7287292618fc HTTP/1.1" 200 1788 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83751-0502-ae87-1a4b-0303c55cc1c7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83751-0502-ae87-1a4b-0303c55cc1c7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 7a6ce521-acf1-4d51-b2cf-622b7e292c97 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a484b64e-af72-41bc-9e5e-9d9bd02dc91d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7a6ce521-acf1-4d51-b2cf-622b7e292c97&request_guid=a484b64e-af72-41bc-9e5e-9d9bd02dc91d HTTP/1.1" 200 2194 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83751-0502-afee-1a4b-0303c55ca6cf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83751-0502-afee-1a4b-0303c55ca6cf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83751-0502-afee-1a4b-0303c55ca6cf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f23848b5-e437-4288-b7ea-fb256ae9bb1b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83751-0502-afee-1a4b-0303c55ca6cf?request_guid=f23848b5-e437-4288-b7ea-fb256ae9bb1b HTTP/1.1" 200 1686 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83751-0502-afee-1a4b-0303c55ca6cf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1f5b01c9-9bc6-4cfe-a878-e523a0b7d302 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83751-0502-afee-1a4b-0303c55ca6cf?request_guid=1f5b01c9-9bc6-4cfe-a878-e523a0b7d302 HTTP/1.1" 200 1687 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83751-0502-afee-1a4b-0303c55ca6cf'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: d25f5f07-c429-462f-9b36-0198638b1f03 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83751-0502-afee-1a4b-0303c55ca6cf'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83751-0502-afee-1a4b-0303c55ca6cf'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 802816b5-6d08-4e1d-b535-6da5aca03d88 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d25f5f07-c429-462f-9b36-0198638b1f03&request_guid=802816b5-6d08-4e1d-b535-6da5aca03d88 HTTP/1.1" 200 2191 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83751-0502-af26-1a4b-0303c55cb553 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83751-0502-af26-1a4b-0303c55cb553 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3784s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3857s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3918s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=a1c43c8d-6913-4b67-a8e4-e4d00a957739 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 60153246-976f-4020-b506-4692dea32c34 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1706083768048 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1706083768048 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1706084086400 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1706084086400 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1706084086400 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1706084086400 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1706083768048 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1706083768048 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=a1c43c8d-6913-4b67-a8e4-e4d00a957739&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=60153246-976f-4020-b506-4692dea32c34 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=2161a992-672d-405f-9e2b-014704eeffba +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a9a6856c-73f1-4d78-9646-130d16be8c6c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=2161a992-672d-405f-9e2b-014704eeffba&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=a9a6856c-73f1-4d78-9646-130d16be8c6c HTTP/1.1" 200 1557 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00200s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 8035bad4-2f91-4e8a-93bb-53785d8d0527 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8c5ce172-7be2-4c69-86d6-2be161a811c4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=8035bad4-2f91-4e8a-93bb-53785d8d0527&request_guid=8c5ce172-7be2-4c69-86d6-2be161a811c4 HTTP/1.1" 200 2196 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83752-0502-b0de-1a4b-0303c55cda17 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83752-0502-b0de-1a4b-0303c55cda17 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83752-0502-b0de-1a4b-0303c55cda17' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4dd8db16-fe89-41e4-a192-5bf07e3df074 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83752-0502-b0de-1a4b-0303c55cda17?request_guid=4dd8db16-fe89-41e4-a192-5bf07e3df074 HTTP/1.1" 200 1860 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83752-0502-b0de-1a4b-0303c55cda17' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8a83cc0a-7472-4976-8944-7b8b79a57df5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83752-0502-b0de-1a4b-0303c55cda17?request_guid=8a83cc0a-7472-4976-8944-7b8b79a57df5 HTTP/1.1" 200 1860 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83752-0502-b0de-1a4b-0303c55cda17'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: d0095ed0-6ddb-4965-91d9-60c553efbecd +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83752-0502-b0de-1a4b-0303c55cda17'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83752-0502-b0de-1a4b-0303c55cda17'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5ea61006-4f7a-48d4-920d-18bfed4d3cd8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d0095ed0-6ddb-4965-91d9-60c553efbecd&request_guid=5ea61006-4f7a-48d4-920d-18bfed4d3cd8 HTTP/1.1" 200 2200 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83752-0502-ae87-1a4b-0303c55ccfcf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83752-0502-ae87-1a4b-0303c55ccfcf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 8368db6c-ee10-4413-9af7-d58ceecfc829 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 60af031c-d278-488e-8653-9f14fe67d419 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=8368db6c-ee10-4413-9af7-d58ceecfc829&request_guid=60af031c-d278-488e-8653-9f14fe67d419 HTTP/1.1" 200 1787 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83752-0502-afee-1a4b-0303c55ce5e3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83752-0502-afee-1a4b-0303c55ce5e3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83752-0502-afee-1a4b-0303c55ce5e3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 55b19aeb-a2dc-4e9c-aee4-e822c38d4c7c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83752-0502-afee-1a4b-0303c55ce5e3?request_guid=55b19aeb-a2dc-4e9c-aee4-e822c38d4c7c HTTP/1.1" 200 2184 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83752-0502-afee-1a4b-0303c55ce5e3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6d47f927-31d0-461a-a82f-78a618d18172 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83752-0502-afee-1a4b-0303c55ce5e3?request_guid=6d47f927-31d0-461a-a82f-78a618d18172 HTTP/1.1" 200 2184 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83752-0502-afee-1a4b-0303c55ce5e3'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 5e6c7aa0-f33b-406e-b24c-943a6adc0801 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83752-0502-afee-1a4b-0303c55ce5e3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83752-0502-afee-1a4b-0303c55ce5e3'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: be79dd73-1072-48c6-9978-04bf7af43a06 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5e6c7aa0-f33b-406e-b24c-943a6adc0801&request_guid=be79dd73-1072-48c6-9978-04bf7af43a06 HTTP/1.1" 200 1783 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83752-0502-b0de-1a4b-0303c55cdaa3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83752-0502-b0de-1a4b-0303c55cdaa3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 3d945e18-b5e5-4b20-9bb7-559881be7e1d +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 668bbcd5-3981-44be-b061-162550a9e805 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3d945e18-b5e5-4b20-9bb7-559881be7e1d&request_guid=668bbcd5-3981-44be-b061-162550a9e805 HTTP/1.1" 200 2194 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83752-0502-ae87-1a4b-0303c55d100b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83752-0502-ae87-1a4b-0303c55d100b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83752-0502-ae87-1a4b-0303c55d100b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7c45340a-46e0-4fc1-80e9-543365598fb2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83752-0502-ae87-1a4b-0303c55d100b?request_guid=7c45340a-46e0-4fc1-80e9-543365598fb2 HTTP/1.1" 200 1683 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83752-0502-ae87-1a4b-0303c55d100b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f284549b-234e-4714-b9f1-4ce60a92f2e9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83752-0502-ae87-1a4b-0303c55d100b?request_guid=f284549b-234e-4714-b9f1-4ce60a92f2e9 HTTP/1.1" 200 1684 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83752-0502-ae87-1a4b-0303c55d100b'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: cad74118-3f78-4a50-a522-51885def92b7 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83752-0502-ae87-1a4b-0303c55d100b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83752-0502-ae87-1a4b-0303c55d100b'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d791b1ae-b33a-413e-8570-5f31be84f451 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cad74118-3f78-4a50-a522-51885def92b7&request_guid=d791b1ae-b33a-413e-8570-5f31be84f451 HTTP/1.1" 200 2190 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83752-0502-b1d6-1a4b-0303c55d02af +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83752-0502-b1d6-1a4b-0303c55d02af +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 12.09s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=7dd88cb7-6f17-4dd4-bca2-248b315b5a8b +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d467cb3b-2059-4bd1-bb5f-8b37f137f052 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=7dd88cb7-6f17-4dd4-bca2-248b315b5a8b&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=d467cb3b-2059-4bd1-bb5f-8b37f137f052 HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,HEADER_CHANGE_SEQ,HEADER_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: f8ad78bc-70f0-4228-ad51-dfcae0875e39 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,HEADER_CHANGE_SEQ,HEADER_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,HEADER_CHANGE_SEQ,HEADER_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fa4765bb-641f-435f-9b0d-8cf0dbdb3e44 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f8ad78bc-70f0-4228-ad51-dfcae0875e39&request_guid=fa4765bb-641f-435f-9b0d-8cf0dbdb3e44 HTTP/1.1" 200 386 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = 000904, after post request +DEBUG:snowflake.connector.network:Query id: 01a83752-0502-af26-1a4b-0303c55cf557 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83752-0502-af26-1a4b-0303c55cf557 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:{'data': {'internalError': False, 'errorCode': '000904', 'age': 0, 'sqlState': '42000', 'queryId': '01a83752-0502-af26-1a4b-0303c55cf557', 'line': -1, 'pos': -1, 'type': 'COMPILATION'}, 'code': '000904', 'message': "SQL compilation error: error line 1 at position 55\ninvalid identifier 'HEADER_CHANGE_SEQ'", 'success': False, 'headers': None} +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 08:06:48] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 08:06:49] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 08:06:49] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 08:06:49] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 08:06:50] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 6.162s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 6.211s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 6.267s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=0bf82896-8002-4414-8f4c-13c14f442e67 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a4f79799-cdb0-47ee-9345-ff9c0def0a94 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1966930924192 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1966930924192 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1966931242544 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1966931242544 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1966931242544 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1966931242544 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1966930924192 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1966930924192 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=0bf82896-8002-4414-8f4c-13c14f442e67&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=a4f79799-cdb0-47ee-9345-ff9c0def0a94 HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=c65e3e99-ef30-4c20-bfa4-c2f58f90758e +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c707213f-46f7-4393-8eb6-83b32b7428eb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=c65e3e99-ef30-4c20-bfa4-c2f58f90758e&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=c707213f-46f7-4393-8eb6-83b32b7428eb HTTP/1.1" 200 1557 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00369s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 37067a92-adae-4e7c-af54-079df0a4d971 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 49755992-48b7-488b-8405-d5bbacdee635 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=37067a92-adae-4e7c-af54-079df0a4d971&request_guid=49755992-48b7-488b-8405-d5bbacdee635 HTTP/1.1" 200 2195 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83754-0502-b0de-1a4b-0303c55d757f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83754-0502-b0de-1a4b-0303c55d757f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83754-0502-b0de-1a4b-0303c55d757f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1a706628-907c-43dd-9785-b7d839c42b2c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83754-0502-b0de-1a4b-0303c55d757f?request_guid=1a706628-907c-43dd-9785-b7d839c42b2c HTTP/1.1" 200 1855 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83754-0502-b0de-1a4b-0303c55d757f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 623d31a5-e86a-4f34-824f-8f2361a001eb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83754-0502-b0de-1a4b-0303c55d757f?request_guid=623d31a5-e86a-4f34-824f-8f2361a001eb HTTP/1.1" 200 1855 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83754-0502-b0de-1a4b-0303c55d757f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 66a79734-4cae-4cdc-9938-005f4d31b2df +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83754-0502-b0de-1a4b-0303c55d757f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83754-0502-b0de-1a4b-0303c55d757f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 842fb7e4-aeb9-4ea8-8c2a-ee72571de9dd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=66a79734-4cae-4cdc-9938-005f4d31b2df&request_guid=842fb7e4-aeb9-4ea8-8c2a-ee72571de9dd HTTP/1.1" 200 2199 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83754-0502-afee-1a4b-0303c55d81d3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83754-0502-afee-1a4b-0303c55d81d3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 0ad176b4-3642-4c3f-914a-481e5dc80e7f +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 94c3d8d4-6d35-4f93-a991-e109bfbf859f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0ad176b4-3642-4c3f-914a-481e5dc80e7f&request_guid=94c3d8d4-6d35-4f93-a991-e109bfbf859f HTTP/1.1" 200 1783 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83754-0502-b1d6-1a4b-0303c55d6b17 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83754-0502-b1d6-1a4b-0303c55d6b17 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83754-0502-b1d6-1a4b-0303c55d6b17' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5d84ed0f-6fdf-464e-ac36-bcd122917446 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83754-0502-b1d6-1a4b-0303c55d6b17?request_guid=5d84ed0f-6fdf-464e-ac36-bcd122917446 HTTP/1.1" 200 2166 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83754-0502-b1d6-1a4b-0303c55d6b17' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: da805463-3a01-41a6-a809-8c5c67f99869 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83754-0502-b1d6-1a4b-0303c55d6b17?request_guid=da805463-3a01-41a6-a809-8c5c67f99869 HTTP/1.1" 200 2166 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83754-0502-b1d6-1a4b-0303c55d6b17'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 53afd5b5-4d61-4033-9f91-231703c95ffe +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83754-0502-b1d6-1a4b-0303c55d6b17'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83754-0502-b1d6-1a4b-0303c55d6b17'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: dce4692f-0064-4254-85d2-445d55b97b9b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=53afd5b5-4d61-4033-9f91-231703c95ffe&request_guid=dce4692f-0064-4254-85d2-445d55b97b9b HTTP/1.1" 200 1785 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83754-0502-ae87-1a4b-0303c55d5eeb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83754-0502-ae87-1a4b-0303c55d5eeb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: ee66c161-99bc-49ff-86ec-a2797e6346d3 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 57a1818f-1fc9-41cc-80e8-313f589b8c6b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ee66c161-99bc-49ff-86ec-a2797e6346d3&request_guid=57a1818f-1fc9-41cc-80e8-313f589b8c6b HTTP/1.1" 200 2195 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83754-0502-afee-1a4b-0303c55d8223 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83754-0502-afee-1a4b-0303c55d8223 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83754-0502-afee-1a4b-0303c55d8223' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e9176d0b-4831-4fcf-9cee-a13f8d6b51ee +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83754-0502-afee-1a4b-0303c55d8223?request_guid=e9176d0b-4831-4fcf-9cee-a13f8d6b51ee HTTP/1.1" 200 1683 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83754-0502-afee-1a4b-0303c55d8223' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5428d5ad-ad1f-4bca-9be3-4969234bf07b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83754-0502-afee-1a4b-0303c55d8223?request_guid=5428d5ad-ad1f-4bca-9be3-4969234bf07b HTTP/1.1" 200 1683 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83754-0502-afee-1a4b-0303c55d8223'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 265f66ac-831f-4788-8ef5-65d1ef45a7c1 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83754-0502-afee-1a4b-0303c55d8223'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83754-0502-afee-1a4b-0303c55d8223'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4964b8e7-5fcc-4f00-902b-62f168ccfb02 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=265f66ac-831f-4788-8ef5-65d1ef45a7c1&request_guid=4964b8e7-5fcc-4f00-902b-62f168ccfb02 HTTP/1.1" 200 2192 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83754-0502-af26-1a4b-0303c55d4f0b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83754-0502-af26-1a4b-0303c55d4f0b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.5939s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.5986s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.6048s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=3e606516-9a18-44e1-bafe-a76378d88d4e +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1f118d72-9257-4f81-85b9-24660932a4fb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1985250727664 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1985250727664 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1985251046016 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1985251046016 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1985251046016 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1985251046016 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1985250727664 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1985250727664 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=3e606516-9a18-44e1-bafe-a76378d88d4e&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=1f118d72-9257-4f81-85b9-24660932a4fb HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=ff98c6ad-07f7-4f77-a4df-010f73fd20ee +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4582cab7-c9e8-43c5-b782-8ae48c6cb7fa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=ff98c6ad-07f7-4f77-a4df-010f73fd20ee&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=4582cab7-c9e8-43c5-b782-8ae48c6cb7fa HTTP/1.1" 200 1549 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00161s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 2120f6ab-44db-4fc5-ba85-c677dc61d6ef +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 32840ac7-cafc-43d3-b73c-6c08936c0340 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2120f6ab-44db-4fc5-ba85-c677dc61d6ef&request_guid=32840ac7-cafc-43d3-b73c-6c08936c0340 HTTP/1.1" 200 2196 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8375c-0502-b21e-1a4b-0303c55fcb0b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8375c-0502-b21e-1a4b-0303c55fcb0b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8375c-0502-b21e-1a4b-0303c55fcb0b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 495031b1-85f0-4182-a930-5d032e1fcbcb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8375c-0502-b21e-1a4b-0303c55fcb0b?request_guid=495031b1-85f0-4182-a930-5d032e1fcbcb HTTP/1.1" 200 1875 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8375c-0502-b21e-1a4b-0303c55fcb0b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d5f221b9-a81a-4bbb-ac0c-d2b696c50619 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8375c-0502-b21e-1a4b-0303c55fcb0b?request_guid=d5f221b9-a81a-4bbb-ac0c-d2b696c50619 HTTP/1.1" 200 1875 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8375c-0502-b21e-1a4b-0303c55fcb0b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 63d0fe58-de31-4620-8146-4c01281c9b39 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8375c-0502-b21e-1a4b-0303c55fcb0b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8375c-0502-b21e-1a4b-0303c55fcb0b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: aa9cfe4c-b6b4-419e-af0e-f3967f17091d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=63d0fe58-de31-4620-8146-4c01281c9b39&request_guid=aa9cfe4c-b6b4-419e-af0e-f3967f17091d HTTP/1.1" 200 2197 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8375c-0502-af26-1a4b-0303c55fdcd7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8375c-0502-af26-1a4b-0303c55fdcd7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 225c4745-68a3-48c6-9fee-138d5b9fe83a +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ec7d894c-e275-441f-9859-cd535b62de7d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=225c4745-68a3-48c6-9fee-138d5b9fe83a&request_guid=ec7d894c-e275-441f-9859-cd535b62de7d HTTP/1.1" 200 1788 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8375c-0502-ae87-1a4b-0303c55ff67b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8375c-0502-ae87-1a4b-0303c55ff67b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8375c-0502-ae87-1a4b-0303c55ff67b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 230fc58e-25a7-4342-8e7f-447d5d2751b9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8375c-0502-ae87-1a4b-0303c55ff67b?request_guid=230fc58e-25a7-4342-8e7f-447d5d2751b9 HTTP/1.1" 200 2175 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8375c-0502-ae87-1a4b-0303c55ff67b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2cf38c0f-26b6-4122-8a94-0ac984301763 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8375c-0502-ae87-1a4b-0303c55ff67b?request_guid=2cf38c0f-26b6-4122-8a94-0ac984301763 HTTP/1.1" 200 2175 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8375c-0502-ae87-1a4b-0303c55ff67b'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 64ad3412-c32f-498e-903b-9e3d9609a250 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8375c-0502-ae87-1a4b-0303c55ff67b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8375c-0502-ae87-1a4b-0303c55ff67b'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e5867c81-6500-44b0-b3b6-2f339cd8c296 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=64ad3412-c32f-498e-903b-9e3d9609a250&request_guid=e5867c81-6500-44b0-b3b6-2f339cd8c296 HTTP/1.1" 503 15104 +DEBUG:snowflake.connector.network:000503: 503: HTTP 503: Service Unavailable. Retrying... +DEBUG:snowflake.connector.network:retrying: errorclass=, error=000503: 503: HTTP 503: Service Unavailable, counter=1, sleeping=1(s) +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 2 +DEBUG:snowflake.connector.network:Request guid: 49f42d70-e35a-46e7-bc5f-32e2d5261037 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=64ad3412-c32f-498e-903b-9e3d9609a250&clientStartTime=1668086195299&retryCount=1&request_guid=49f42d70-e35a-46e7-bc5f-32e2d5261037 HTTP/1.1" 200 1785 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8375c-0502-b21e-1a4b-0303c55fcc03 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8375c-0502-b21e-1a4b-0303c55fcc03 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 021dc578-a20c-447e-be25-a71f3c440790 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b169a058-5032-4793-a1cf-1fae0b2eb1bc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=021dc578-a20c-447e-be25-a71f3c440790&request_guid=b169a058-5032-4793-a1cf-1fae0b2eb1bc HTTP/1.1" 200 2195 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8375c-0502-afee-1a4b-0303c55feb9f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8375c-0502-afee-1a4b-0303c55feb9f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8375c-0502-afee-1a4b-0303c55feb9f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d85203d5-73b3-4290-9dcf-8dedfb187549 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8375c-0502-afee-1a4b-0303c55feb9f?request_guid=d85203d5-73b3-4290-9dcf-8dedfb187549 HTTP/1.1" 200 1682 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8375c-0502-afee-1a4b-0303c55feb9f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 654a2047-35ea-4343-a45c-8209ec2c02bf +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8375c-0502-afee-1a4b-0303c55feb9f?request_guid=654a2047-35ea-4343-a45c-8209ec2c02bf HTTP/1.1" 200 1683 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8375c-0502-afee-1a4b-0303c55feb9f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 69411ad1-ac5e-4bed-9ad7-30983b8e3bfe +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8375c-0502-afee-1a4b-0303c55feb9f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8375c-0502-afee-1a4b-0303c55feb9f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 27d68c03-77ea-4999-9fce-425fdea5e9a3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=69411ad1-ac5e-4bed-9ad7-30983b8e3bfe&request_guid=27d68c03-77ea-4999-9fce-425fdea5e9a3 HTTP/1.1" 200 2190 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8375c-0502-b1d6-1a4b-0303c56003a7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8375c-0502-b1d6-1a4b-0303c56003a7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 12.84s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=b3c9a2bd-ef06-41d7-9dda-ff2cdc05ff80 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0083b8af-a231-40cd-b204-549b58c620b8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 17.94s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 17.94s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 17.95s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=0624e2ec-c19c-46e5-9814-214785fe41bb +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0e4c7cab-fdc2-4e1d-a0ee-7667e275c979 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=b3c9a2bd-ef06-41d7-9dda-ff2cdc05ff80&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=0083b8af-a231-40cd-b204-549b58c620b8 HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: f0bce727-8a7e-45e9-8ca1-bb25588b59eb +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a0b8aac4-9de9-48c1-a2ed-4852f5d7878b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=0624e2ec-c19c-46e5-9814-214785fe41bb&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=0e4c7cab-fdc2-4e1d-a0ee-7667e275c979 HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=71718eb9-ec54-4704-9f6f-e994f9090e7d +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 99341a76-301e-485d-a141-5055b40406bb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f0bce727-8a7e-45e9-8ca1-bb25588b59eb&request_guid=a0b8aac4-9de9-48c1-a2ed-4852f5d7878b HTTP/1.1" 200 None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Query id: 01a8375c-0502-ae87-1a4b-0303c55ffa6b +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:sfqid: 01a8375c-0502-ae87-1a4b-0303c55ffa6b +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +INFO:snowflake.connector.cursor:Number of results in first chunk: 333 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8375c-0502-ae87-1a4b-0303c55ffa6b' +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.network:Request guid: 71afa51b-0b10-4699-9888-7d06f1e8a4c4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8375c-0502-ae87-1a4b-0303c55ffa6b?request_guid=71afa51b-0b10-4699-9888-7d06f1e8a4c4 HTTP/1.1" 200 2091 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8375c-0502-ae87-1a4b-0303c55ffa6b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b147b3af-8e54-4b32-bc3e-68e8060d75c9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8375c-0502-ae87-1a4b-0303c55ffa6b?request_guid=b147b3af-8e54-4b32-bc3e-68e8060d75c9 HTTP/1.1" 200 2091 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8375c-0502-ae87-1a4b-0303c55ffa6b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: bc246be5-20bd-4a77-885a-5cb402943b11 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8375c-0502-ae87-1a4b-0303c55ffa6b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8375c-0502-ae87-1a4b-0303c55ffa6b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9ab3038e-031a-4b73-a4a5-bbdecd195611 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=bc246be5-20bd-4a77-885a-5cb402943b11&request_guid=9ab3038e-031a-4b73-a4a5-bbdecd195611 HTTP/1.1" 200 2277 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8375c-0502-b21e-1a4b-0303c55fcf8f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8375c-0502-b21e-1a4b-0303c55fcf8f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=71718eb9-ec54-4704-9f6f-e994f9090e7d&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=99341a76-301e-485d-a141-5055b40406bb HTTP/1.1" 200 1556 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 17.34s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: a4b54868-4775-4f9d-b951-c7d017c7663f +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c53e51d0-2424-4491-87bc-0baf2d2540eb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a4b54868-4775-4f9d-b951-c7d017c7663f&request_guid=c53e51d0-2424-4491-87bc-0baf2d2540eb HTTP/1.1" 503 15104 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:000503: 503: HTTP 503: Service Unavailable. Retrying... +DEBUG:snowflake.connector.network:retrying: errorclass=, error=000503: 503: HTTP 503: Service Unavailable, counter=1, sleeping=3(s) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.network:Request guid: 2ca38114-b53b-475f-af4f-4786fdfa560f +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8375c-0502-ae87-1a4b-0303c55ffa6b_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668107810&Signature=1dP%2FdWzqBeKGdVRVCFmdLjblung%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8375c-0502-ae87-1a4b-0303c55ffa6b_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668107810&Signature=j5bqzMVyo70kfwD%2BzMMJWS7iQDM%3D HTTP/1.1" 200 339618 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8375c-0502-ae87-1a4b-0303c55ffa6b_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668107810&Signature=%2Foib3Wx1Bu%2BeDnBpoxUhc6XL1P4%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8375c-0502-ae87-1a4b-0303c55ffa6b_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668107810&Signature=8D2A8QDLBHsT28BJQ5xC9SEf1XY%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a4b54868-4775-4f9d-b951-c7d017c7663f&clientStartTime=1668086210324&retryCount=1&request_guid=2ca38114-b53b-475f-af4f-4786fdfa560f HTTP/1.1" 200 2193 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8375c-0502-b1d6-1a4b-0303c5600803 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.cursor:sfqid: 01a8375c-0502-b1d6-1a4b-0303c5600803 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8375c-0502-b1d6-1a4b-0303c5600803' +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 26f529f9-f63c-4781-9e32-551bac8c7ada +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1367 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1274 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8375c-0502-b1d6-1a4b-0303c5600803?request_guid=26f529f9-f63c-4781-9e32-551bac8c7ada HTTP/1.1" 200 1860 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8375c-0502-b1d6-1a4b-0303c5600803' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9c3cc166-a508-419c-9171-7e4b8325dcc2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8375c-0502-b1d6-1a4b-0303c5600803?request_guid=9c3cc166-a508-419c-9171-7e4b8325dcc2 HTTP/1.1" 200 1860 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8375c-0502-b1d6-1a4b-0303c5600803'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 8e0e57fb-6966-4046-9782-5c9e136839f1 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8375c-0502-b1d6-1a4b-0303c5600803'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8375c-0502-b1d6-1a4b-0303c5600803'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 57816118-0616-475b-8d81-fc7987335f6f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=8e0e57fb-6966-4046-9782-5c9e136839f1&request_guid=57816118-0616-475b-8d81-fc7987335f6f HTTP/1.1" 200 2197 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8375c-0502-afee-1a4b-0303c560318f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8375c-0502-afee-1a4b-0303c560318f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 3b5a7796-18dd-4ffc-9d45-ee2371aabe13 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f133b598-ac6d-498f-8b28-bac88cc11702 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3b5a7796-18dd-4ffc-9d45-ee2371aabe13&request_guid=f133b598-ac6d-498f-8b28-bac88cc11702 HTTP/1.1" 200 1784 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8375c-0502-b0de-1a4b-0303c56012d7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8375c-0502-b0de-1a4b-0303c56012d7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8375c-0502-b0de-1a4b-0303c56012d7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e6a42def-3209-4685-985f-e177e2efc218 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8375c-0502-b0de-1a4b-0303c56012d7?request_guid=e6a42def-3209-4685-985f-e177e2efc218 HTTP/1.1" 200 2183 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=6c6b2b66-6841-46f5-84ad-dc9bd73c8e4a +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c5b73f78-eead-4e96-a826-05e43fd1312d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8375c-0502-b0de-1a4b-0303c56012d7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3f4ef27d-4d1a-41f1-924a-635c0e556c2c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8375c-0502-b0de-1a4b-0303c56012d7?request_guid=3f4ef27d-4d1a-41f1-924a-635c0e556c2c HTTP/1.1" 200 2184 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8375c-0502-b0de-1a4b-0303c56012d7'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 42cf02da-1848-44a0-be73-e6a90fc15a43 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8375c-0502-b0de-1a4b-0303c56012d7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8375c-0502-b0de-1a4b-0303c56012d7'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d14a42a5-373a-406c-a5e3-8767de3977f2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=42cf02da-1848-44a0-be73-e6a90fc15a43&request_guid=d14a42a5-373a-406c-a5e3-8767de3977f2 HTTP/1.1" 200 1784 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83761-0502-b1d6-1a4b-0303c5612de3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.cursor:sfqid: 01a83761-0502-b1d6-1a4b-0303c5612de3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 99248215-1f53-47ad-8fa0-9e0a31010733 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8468cea5-0614-479c-977b-e214654d86c0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=99248215-1f53-47ad-8fa0-9e0a31010733&request_guid=8468cea5-0614-479c-977b-e214654d86c0 HTTP/1.1" 200 2191 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Query id: 01a83761-0502-af26-1a4b-0303c5616427 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:sfqid: 01a83761-0502-af26-1a4b-0303c5616427 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83761-0502-af26-1a4b-0303c5616427' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3724307e-b612-43db-912a-f8d41d7e2009 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83761-0502-af26-1a4b-0303c5616427?request_guid=3724307e-b612-43db-912a-f8d41d7e2009 HTTP/1.1" 200 1683 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83761-0502-af26-1a4b-0303c5616427' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bca68cf2-ab2a-41ab-b2c2-5c365e4939e9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83761-0502-af26-1a4b-0303c5616427?request_guid=bca68cf2-ab2a-41ab-b2c2-5c365e4939e9 HTTP/1.1" 200 1683 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83761-0502-af26-1a4b-0303c5616427'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: af5a4fec-d772-44cd-ab63-fba8b5fea60d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83761-0502-af26-1a4b-0303c5616427'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83761-0502-af26-1a4b-0303c5616427'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 99f31abe-21dd-4d1f-bb9e-a207ceaa587d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=af5a4fec-d772-44cd-ab63-fba8b5fea60d&request_guid=99f31abe-21dd-4d1f-bb9e-a207ceaa587d HTTP/1.1" 200 2189 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83761-0502-b1d6-1a4b-0303c5612e0b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83761-0502-b1d6-1a4b-0303c5612e0b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=6c6b2b66-6841-46f5-84ad-dc9bd73c8e4a&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=c5b73f78-eead-4e96-a826-05e43fd1312d HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 99f3fd64-0b81-4fa4-a4ac-3b810e083508 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b0db96cd-418d-46d8-a192-8ce10bcfefc3 +DEBUG:snowflake.connector.network:socket timeout: 60 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 298.9s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=8247a8e7-5835-4e7d-aa9a-1b8c40d8b093 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 378ed434-e493-4f7f-9754-ab2eddf40a7f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=99f3fd64-0b81-4fa4-a4ac-3b810e083508&request_guid=b0db96cd-418d-46d8-a192-8ce10bcfefc3 HTTP/1.1" 200 None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83761-0502-ae87-1a4b-0303c56173fb +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:sfqid: 01a83761-0502-ae87-1a4b-0303c56173fb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=2 +INFO:snowflake.connector.cursor:Number of results in first chunk: 346 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83761-0502-ae87-1a4b-0303c56173fb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9192cf01-2ff3-4647-a0d4-f0388bea2d7b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83761-0502-ae87-1a4b-0303c56173fb?request_guid=9192cf01-2ff3-4647-a0d4-f0388bea2d7b HTTP/1.1" 200 2085 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83761-0502-ae87-1a4b-0303c56173fb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Request guid: 55d81b01-f7ee-4321-8340-247d1d672d16 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83761-0502-ae87-1a4b-0303c56173fb?request_guid=55d81b01-f7ee-4321-8340-247d1d672d16 HTTP/1.1" 200 2086 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83761-0502-ae87-1a4b-0303c56173fb'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 06410e8f-326c-43e7-8e38-091e2dbb0232 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83761-0502-ae87-1a4b-0303c56173fb'))] +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83761-0502-ae87-1a4b-0303c56173fb'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 86aa6d42-d2ee-4e38-a964-f4f31c880f14 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=06410e8f-326c-43e7-8e38-091e2dbb0232&request_guid=86aa6d42-d2ee-4e38-a964-f4f31c880f14 HTTP/1.1" 200 2213 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83761-0502-b21e-1a4b-0303c5615a53 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83761-0502-b21e-1a4b-0303c5615a53 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=8247a8e7-5835-4e7d-aa9a-1b8c40d8b093&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=378ed434-e493-4f7f-9754-ab2eddf40a7f HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:executing SQL/command +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.cursor:Request id: a5664968-7c76-4da0-a2e2-87a829db2d8d +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Request guid: bb192b66-87fc-4144-92b6-46f3017c3858 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a5664968-7c76-4da0-a2e2-87a829db2d8d&request_guid=bb192b66-87fc-4144-92b6-46f3017c3858 HTTP/1.1" 200 None +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83761-0502-af26-1a4b-0303c561689f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83761-0502-af26-1a4b-0303c561689f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 333 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83761-0502-af26-1a4b-0303c561689f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3801e8e9-f643-46ab-ad5f-addf680b4e52 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83761-0502-af26-1a4b-0303c561689f?request_guid=3801e8e9-f643-46ab-ad5f-addf680b4e52 HTTP/1.1" 200 2089 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83761-0502-af26-1a4b-0303c561689f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9fe20474-902f-4c23-bd41-b4dcbf5af006 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83761-0502-ae87-1a4b-0303c56173fb_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108093&Signature=cD6oCdpDvsGpCuSMtgGZUjOSAPk%3D HTTP/1.1" 200 23658 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83761-0502-af26-1a4b-0303c561689f?request_guid=9fe20474-902f-4c23-bd41-b4dcbf5af006 HTTP/1.1" 200 2087 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/3 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.cursor:executing SQL/command +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83761-0502-af26-1a4b-0303c561689f'))] +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.cursor:Request id: 4af00cde-73a0-4531-a85f-98a6740af77e +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83761-0502-af26-1a4b-0303c561689f'))] +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 346 +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83761-0502-af26-1a4b-0303c561689f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.network:Request guid: 0c255598-c4e1-44e3-8e38-7ba4f7a0468c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83761-0502-ae87-1a4b-0303c56173fb_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108093&Signature=RdMzK5bbLXoOlEe%2Fh5LoQheKGkA%3D HTTP/1.1" 200 110468 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4af00cde-73a0-4531-a85f-98a6740af77e&request_guid=0c255598-c4e1-44e3-8e38-7ba4f7a0468c HTTP/1.1" 200 2269 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83761-0502-afee-1a4b-0303c5614ab3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83761-0502-afee-1a4b-0303c5614ab3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 350 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 350 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 349 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 350 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 350 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83761-0502-ae87-1a4b-0303c56173fb_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108093&Signature=ZnmlSC0uCthoumil6kjPInwANZM%3D HTTP/1.1" 200 241905 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/3 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 9 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 9 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 9, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 350 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 350 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 350 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 350 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 350 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 350 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 713 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 716 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 346 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.telemetry:Sending 1 logs to telemetry. Data is {'logs': [{'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_imported_packages', 'value': "{'posixpath', 'ntpath', 'nturl2path', 'dataclasses', 'enum', 'stat', 'numbers', 'lzma', 'fnmatch', 'flask', 'cython_runtime', 'unicodedata', 'urllib3', 'cryptography', 'pydevconsole', 'itertools', 'glob', 'plistlib', 'configparser', 'threading', 'hmac', 'ctypes', 'calendar', 'math', 'html', 'tempfile', 'fconfig', 'uuid', 'urllib', 'weakref', 'base64', 'greenlet', 'concurrent', 'types', 'bisect', 'OpenSSL', 'imp', 'gettext', 'argparse', 'ssl', 'keyword', 'platform', 'code', 'requests', 'sysconfig', 'genericpath', 'http', 'sqlalchemy', 'getpass', 'snowflake', 'mmap', 'sre_compile', 'pydoc', 'filelock', 'abc', 'errno', 'logging', 'sys', 'functools', 'msvcrt', 'pprint', 'cffi', 'importlib', 'typing', 'mimetypes', 'datetime', 'codecs', 'copyreg', 'quopri', 'markupsafe', 'pydevd_file_utils', 'signal', 'click', 'sre_parse', 'pydevd_tracing', 'os', 'mako', 'hashlib', 'time', 'traceback', 'warnings', 'gc', 'dateutil', 'cachelib', 'pathlib', 'jinja2', 'certifi', 'flask_session', 'jwt', 'pydevd', 'colorama', 'pytz', 'opcode', 'xmlrpc', 'zipfile', 'wtforms', 'sqlite3', 'timeit', 'sql', 'contextvars', 'shlex', 'stringprep', 'textwrap', 'tokenize', 'flask_sqlalchemy', 'ipaddress', 'charset_normalizer', 'oscrypto', 'debugpy', 'shutil', 'socketserver', 'asyncio', 'alembic', 'contextlib', 'sre_constants', 'cmath', 'codeop', 'pydevd_plugins', 'overrides', 'pickle', 're', 'operator', 'string', 'bz2', 'nt', 'function', 'pkg_resources', 'idna', 'flask_migrate', 'email', 'asn1crypto', 'zlib', 'Cryptodome', 'selectors', 'ast', 'random', 'secrets', 'gzip', 'pandas', 'atexit', 'encodings', 'winreg', 'config', 'marshal', 'subprocess', 'typing_extensions', 'reprlib', 'struct', 'copy', 'itsdangerous', 'binascii', 'linecache', 'queue', 'pkgutil', 'builtins', 'socket', 'heapq', 'site', 'fractions', 'psycopg2', 'json', 'werkzeug', 'common', 'collections', 'webbrowser', 'difflib', 'uu', 'csv', 'xml', 'io', 'select', 'locale', 'six', 'flask_wtf', 'numpy', 'pycparser', 'token', 'pyexpat', 'dis', 'decimal', 'inspect', 'zipimport', 'pydev_ipython'}"}, 'timestamp': '1668086190973'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8375c-0502-b21e-1a4b-0303c55fcb0b', 'value': -551}, 'timestamp': '1668086193834'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8375c-0502-af26-1a4b-0303c55fdcd7', 'value': -550}, 'timestamp': '1668086194164'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a8375c-0502-af26-1a4b-0303c55fdcd7', 'value': 4}, 'timestamp': '1668086194168'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8375c-0502-ae87-1a4b-0303c55ff67b', 'value': -551}, 'timestamp': '1668086195024'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8375c-0502-b21e-1a4b-0303c55fcc03', 'value': -551}, 'timestamp': '1668086196529'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a8375c-0502-b21e-1a4b-0303c55fcc03', 'value': 3}, 'timestamp': '1668086196532'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8375c-0502-afee-1a4b-0303c55feb9f', 'value': -550}, 'timestamp': '1668086196648'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8375c-0502-b1d6-1a4b-0303c56003a7', 'value': -551}, 'timestamp': '1668086196970'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a8375c-0502-b1d6-1a4b-0303c56003a7', 'value': 2}, 'timestamp': '1668086196972'}]}. +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Request guid: f56066fa-b11d-42f1-8207-0d793bb1acb1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:The lock directory exists. Other process may be updating the cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json.lck +DEBUG:snowflake.connector.ocsp_snowflake:Failed to locate OCSP response cache file. No worry. It will validate with OCSP server: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83761-0502-af26-1a4b-0303c561689f_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108096&Signature=%2FAzK1aKP1GjjFrsPh24g447mDIg%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83761-0502-af26-1a4b-0303c561689f_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108096&Signature=guzRz03z3Q1XxnFyU%2FdxkDTXd%2Bc%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83761-0502-af26-1a4b-0303c561689f_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108096&Signature=bRWwlptfzINfL0pJtBLtMnemPjU%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83761-0502-af26-1a4b-0303c561689f_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108096&Signature=SVRguAVtvchKhUdd6bIwLowQcUY%3D HTTP/1.1" 200 348598 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /telemetry/send?request_guid=f56066fa-b11d-42f1-8207-0d793bb1acb1 HTTP/1.1" 200 86 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.telemetry:Successfully uploading metrics to telemetry. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4b048152-0c84-4cd8-a8b8-53721531fe3a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=4b048152-0c84-4cd8-a8b8-53721531fe3a HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.telemetry:Sending 1 logs to telemetry. Data is {'logs': [{'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_imported_packages', 'value': "{'posixpath', 'ntpath', 'nturl2path', 'dataclasses', 'enum', 'stat', 'numbers', 'lzma', 'fnmatch', 'flask', 'cython_runtime', 'unicodedata', 'urllib3', 'cryptography', 'pydevconsole', 'itertools', 'glob', 'plistlib', 'configparser', 'threading', 'hmac', 'ctypes', 'calendar', 'math', 'html', 'tempfile', 'fconfig', 'uuid', 'urllib', 'weakref', 'base64', 'greenlet', 'concurrent', 'types', 'bisect', 'OpenSSL', 'imp', 'gettext', 'argparse', 'ssl', 'keyword', 'platform', 'code', 'requests', 'sysconfig', 'genericpath', 'http', 'sqlalchemy', 'getpass', 'snowflake', 'mmap', 'sre_compile', 'pydoc', 'filelock', 'abc', 'errno', 'logging', 'sys', 'functools', 'msvcrt', 'pprint', 'cffi', 'importlib', 'typing', 'mimetypes', 'datetime', 'codecs', 'copyreg', 'quopri', 'markupsafe', 'pydevd_file_utils', 'signal', 'click', 'sre_parse', 'pydevd_tracing', 'os', 'mako', 'hashlib', 'time', 'traceback', 'warnings', 'gc', 'dateutil', 'cachelib', 'pathlib', 'jinja2', 'certifi', 'flask_session', 'jwt', 'pydevd', 'colorama', 'pytz', 'opcode', 'xmlrpc', 'zipfile', 'wtforms', 'sqlite3', 'timeit', 'sql', 'contextvars', 'shlex', 'stringprep', 'textwrap', 'tokenize', 'flask_sqlalchemy', 'ipaddress', 'charset_normalizer', 'oscrypto', 'debugpy', 'shutil', 'socketserver', 'asyncio', 'alembic', 'contextlib', 'sre_constants', 'cmath', 'codeop', 'pydevd_plugins', 'overrides', 'pickle', 're', 'operator', 'string', 'bz2', 'nt', 'function', 'pkg_resources', 'idna', 'flask_migrate', 'email', 'asn1crypto', 'zlib', 'Cryptodome', 'selectors', 'ast', 'random', 'secrets', 'gzip', 'pandas', 'atexit', 'encodings', 'winreg', 'config', 'marshal', 'subprocess', 'typing_extensions', 'reprlib', 'struct', 'copy', 'itsdangerous', 'binascii', 'linecache', 'queue', 'pkgutil', 'builtins', 'socket', 'heapq', 'site', 'fractions', 'psycopg2', 'json', 'werkzeug', 'common', 'collections', 'webbrowser', 'difflib', 'uu', 'csv', 'xml', 'io', 'select', 'locale', 'six', 'flask_wtf', 'numpy', 'pycparser', 'token', 'pyexpat', 'dis', 'decimal', 'inspect', 'zipimport', 'pydev_ipython'}"}, 'timestamp': '1668086192976'}]}. +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 95fd9f74-68a0-41a7-91e9-16b6130c023f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1367 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1368 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 38 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /telemetry/send?request_guid=95fd9f74-68a0-41a7-91e9-16b6130c023f HTTP/1.1" 200 86 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.telemetry:Successfully uploading metrics to telemetry. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9fb4fe8d-73a1-46e6-b00c-b4f669f2f5d3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=9fb4fe8d-73a1-46e6-b00c-b4f669f2f5d3 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 08:21:43] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&submit=Submit HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\pgfunctions.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.5439s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.5482s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.5548s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=01daad4c-9ad5-4ad2-ba4a-a3e0e3bc57a0 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bca9b64f-e4ec-4a39-babf-fc38147bb0d2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2804391630576 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2804391630576 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2804391948928 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2804391948928 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2804391948928 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2804391948928 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2804391630576 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2804391630576 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=01daad4c-9ad5-4ad2-ba4a-a3e0e3bc57a0&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=bca9b64f-e4ec-4a39-babf-fc38147bb0d2 HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=dc4b35a5-ca39-47b6-bce5-0b33ffeeb445 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ac801f25-2ba3-49c6-93d3-98dff3f37b15 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=dc4b35a5-ca39-47b6-bce5-0b33ffeeb445&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=ac801f25-2ba3-49c6-93d3-98dff3f37b15 HTTP/1.1" 200 1548 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00384s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: a80b3779-11b4-481f-934b-244877dd4f95 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0fa86926-310a-4e6b-b7cb-3823aecbc4d1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a80b3779-11b4-481f-934b-244877dd4f95&request_guid=0fa86926-310a-4e6b-b7cb-3823aecbc4d1 HTTP/1.1" 200 2200 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376d-0502-afee-1a4b-0303c564a283 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376d-0502-afee-1a4b-0303c564a283 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376d-0502-afee-1a4b-0303c564a283' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ef8fb76a-16bf-458c-9159-e3ce51db7261 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376d-0502-afee-1a4b-0303c564a283?request_guid=ef8fb76a-16bf-458c-9159-e3ce51db7261 HTTP/1.1" 200 1864 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376d-0502-afee-1a4b-0303c564a283' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1fccd117-e0c9-4d45-9b67-93c3fbcc6aa6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376d-0502-afee-1a4b-0303c564a283?request_guid=1fccd117-e0c9-4d45-9b67-93c3fbcc6aa6 HTTP/1.1" 200 1863 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8376d-0502-afee-1a4b-0303c564a283'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 26aaab07-85f5-41b0-961b-375c1dd4aed7 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8376d-0502-afee-1a4b-0303c564a283'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8376d-0502-afee-1a4b-0303c564a283'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a7cf47df-52c7-4f09-9d2f-41ed9ace3f24 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=26aaab07-85f5-41b0-961b-375c1dd4aed7&request_guid=a7cf47df-52c7-4f09-9d2f-41ed9ace3f24 HTTP/1.1" 200 2200 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376d-0502-ae87-1a4b-0303c5648617 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376d-0502-ae87-1a4b-0303c5648617 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 0a378a48-fb50-4398-9aa6-f49e6a6f469a +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b247c9e3-3ce6-469c-b1a8-29f09f9ace76 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0a378a48-fb50-4398-9aa6-f49e6a6f469a&request_guid=b247c9e3-3ce6-469c-b1a8-29f09f9ace76 HTTP/1.1" 200 1783 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376d-0502-b1d6-1a4b-0303c5647813 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376d-0502-b1d6-1a4b-0303c5647813 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376d-0502-b1d6-1a4b-0303c5647813' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: df0a88d4-971a-4593-8a40-015accef727e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376d-0502-b1d6-1a4b-0303c5647813?request_guid=df0a88d4-971a-4593-8a40-015accef727e HTTP/1.1" 200 2183 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376d-0502-b1d6-1a4b-0303c5647813' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d78ade93-f079-4383-8c81-c452668959db +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376d-0502-b1d6-1a4b-0303c5647813?request_guid=d78ade93-f079-4383-8c81-c452668959db HTTP/1.1" 200 2183 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8376d-0502-b1d6-1a4b-0303c5647813'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 2033a06b-85e7-484c-89f7-2e707dc35147 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8376d-0502-b1d6-1a4b-0303c5647813'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8376d-0502-b1d6-1a4b-0303c5647813'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3fdf3968-1ec4-4c74-8cf2-3efaa70495d7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2033a06b-85e7-484c-89f7-2e707dc35147&request_guid=3fdf3968-1ec4-4c74-8cf2-3efaa70495d7 HTTP/1.1" 200 1783 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376d-0502-b0de-1a4b-0303c5645fcf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376d-0502-b0de-1a4b-0303c5645fcf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: fb901f51-e460-4b87-8596-0045175738bd +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: aa10a31d-89af-46cb-8af0-d3b8255b2e27 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=fb901f51-e460-4b87-8596-0045175738bd&request_guid=aa10a31d-89af-46cb-8af0-d3b8255b2e27 HTTP/1.1" 200 2188 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376d-0502-b1d6-1a4b-0303c5647873 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376d-0502-b1d6-1a4b-0303c5647873 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376d-0502-b1d6-1a4b-0303c5647873' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 77857cb2-4969-49a7-a000-5d16981741bf +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376d-0502-b1d6-1a4b-0303c5647873?request_guid=77857cb2-4969-49a7-a000-5d16981741bf HTTP/1.1" 200 1688 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376d-0502-b1d6-1a4b-0303c5647873' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c429cadf-178f-4612-a738-d028cbeb4967 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376d-0502-b1d6-1a4b-0303c5647873?request_guid=c429cadf-178f-4612-a738-d028cbeb4967 HTTP/1.1" 200 1687 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8376d-0502-b1d6-1a4b-0303c5647873'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 82b1010c-ce1d-4ccc-9430-8b204a7745a9 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8376d-0502-b1d6-1a4b-0303c5647873'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8376d-0502-b1d6-1a4b-0303c5647873'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4cfeca7c-8ea9-431f-b9ef-65d3452128be +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=82b1010c-ce1d-4ccc-9430-8b204a7745a9&request_guid=4cfeca7c-8ea9-431f-b9ef-65d3452128be HTTP/1.1" 200 2193 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376d-0502-ae87-1a4b-0303c5648667 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376d-0502-ae87-1a4b-0303c5648667 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 13.91s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=5b92ced5-54e8-4aba-9b50-36f61b5325a1 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 60321054-2ff0-400f-a189-3025f574802b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:sqlalchemy.engine.Engine:[cached since 19.31s ago] ('fromdata', 1, 0) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 19.35s ago] ('todata', 1, 0) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 19.41s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=8bd3fc45-87bc-4c64-be47-faf6ae26be49 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.network:Request guid: c44ca8c9-4f34-4d6c-91a4-df7c30ee2950 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=5b92ced5-54e8-4aba-9b50-36f61b5325a1&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=60321054-2ff0-400f-a189-3025f574802b HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 9c0f46f0-6673-4aa3-9a3e-378cce5ba0b0 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7187fa30-4269-4d83-98a4-1319f69e002d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=8bd3fc45-87bc-4c64-be47-faf6ae26be49&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=c44ca8c9-4f34-4d6c-91a4-df7c30ee2950 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=476c9807-3ac6-4494-ab0a-a23921e454ce +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e5abb2c5-a851-46c2-96cb-224a238ea2f8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=9c0f46f0-6673-4aa3-9a3e-378cce5ba0b0&request_guid=7187fa30-4269-4d83-98a4-1319f69e002d HTTP/1.1" 200 None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.network:Query id: 01a8376d-0502-ae87-1a4b-0303c564884f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376d-0502-ae87-1a4b-0303c564884f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 333 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376d-0502-ae87-1a4b-0303c564884f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6f53ebdc-0292-4440-9204-2c8c7f2ca542 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376d-0502-ae87-1a4b-0303c564884f?request_guid=6f53ebdc-0292-4440-9204-2c8c7f2ca542 HTTP/1.1" 200 2091 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376d-0502-ae87-1a4b-0303c564884f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2f26ec68-7e69-42b1-9e5a-3dab46e30aeb +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376d-0502-ae87-1a4b-0303c564884f?request_guid=2f26ec68-7e69-42b1-9e5a-3dab46e30aeb HTTP/1.1" 200 2090 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8376d-0502-ae87-1a4b-0303c564884f'))] +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.cursor:Request id: 1574d9ed-512a-48e5-818d-e079520a289d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8376d-0502-ae87-1a4b-0303c564884f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8376d-0502-ae87-1a4b-0303c564884f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2384c0fa-658b-46d7-a322-fefdb11cb073 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1574d9ed-512a-48e5-818d-e079520a289d&request_guid=2384c0fa-658b-46d7-a322-fefdb11cb073 HTTP/1.1" 200 2281 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376d-0502-afee-1a4b-0303c564a633 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.cursor:sfqid: 01a8376d-0502-afee-1a4b-0303c564a633 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=476c9807-3ac6-4494-ab0a-a23921e454ce&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=e5abb2c5-a851-46c2-96cb-224a238ea2f8 HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +INFO:sqlalchemy.engine.Engine:[cached since 19.29s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: cb46eb3d-b855-4106-8d4c-a860c201206c +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.network:Request guid: acf7f7ed-ecfd-48a0-a1e9-b869d60c6f19 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cb46eb3d-b855-4106-8d4c-a860c201206c&request_guid=acf7f7ed-ecfd-48a0-a1e9-b869d60c6f19 HTTP/1.1" 200 2197 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376d-0502-b0de-1a4b-0303c564c28f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376d-0502-b0de-1a4b-0303c564c28f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376d-0502-b0de-1a4b-0303c564c28f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.network:Request guid: 03aa71f4-af48-4953-bdb4-aa1ff4d5a948 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376d-0502-b0de-1a4b-0303c564c28f?request_guid=03aa71f4-af48-4953-bdb4-aa1ff4d5a948 HTTP/1.1" 200 1857 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376d-0502-b0de-1a4b-0303c564c28f' +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Request guid: b1c8cfa7-ae69-41bd-9713-4434b1e37f54 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376d-0502-b0de-1a4b-0303c564c28f?request_guid=b1c8cfa7-ae69-41bd-9713-4434b1e37f54 HTTP/1.1" 200 1855 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8376d-0502-b0de-1a4b-0303c564c28f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:Request id: 3fd0e8f0-0bd1-484a-a2f3-b855b632ef51 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8376d-0502-b0de-1a4b-0303c564c28f'))] +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8376d-0502-b0de-1a4b-0303c564c28f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Request guid: 1b5ca482-66da-409b-b25e-22d0a28d7e34 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3fd0e8f0-0bd1-484a-a2f3-b855b632ef51&request_guid=1b5ca482-66da-409b-b25e-22d0a28d7e34 HTTP/1.1" 200 2199 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Query id: 01a8376d-0502-afee-1a4b-0303c564a71b +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.cursor:sfqid: 01a8376d-0502-afee-1a4b-0303c564a71b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.cursor:executing SQL/command +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 4ff3f8fb-feee-433a-8cf2-028599db959e +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8376d-0502-ae87-1a4b-0303c564884f_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108807&Signature=QMggMyqq1jj2AbnjibBN8ho%2F94c%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.network:Request guid: 62c5946d-a381-4bc4-9f88-acb7b4aa79b5 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8376d-0502-ae87-1a4b-0303c564884f_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108807&Signature=iL299%2FMoO1psrK23bd6BwuQ4cjE%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4ff3f8fb-feee-433a-8cf2-028599db959e&request_guid=62c5946d-a381-4bc4-9f88-acb7b4aa79b5 HTTP/1.1" 200 1784 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.network:Query id: 01a8376d-0502-af26-1a4b-0303c564b463 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.cursor:sfqid: 01a8376d-0502-af26-1a4b-0303c564b463 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376d-0502-af26-1a4b-0303c564b463' +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 79b58299-c6cb-410c-9b0d-2ec0a6cc8f9b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376d-0502-af26-1a4b-0303c564b463?request_guid=79b58299-c6cb-410c-9b0d-2ec0a6cc8f9b HTTP/1.1" 200 2182 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8376d-0502-ae87-1a4b-0303c564884f_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108807&Signature=xhs3qvE9Zu%2B8eZ%2Fkl03REMedWt8%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376d-0502-af26-1a4b-0303c564b463' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cf432cc7-761b-4857-8fe2-bfab970d810d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376d-0502-af26-1a4b-0303c564b463?request_guid=cf432cc7-761b-4857-8fe2-bfab970d810d HTTP/1.1" 200 2182 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8376d-0502-af26-1a4b-0303c564b463'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 6de27468-5570-47c2-bf68-5cd4a73b85d9 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8376d-0502-af26-1a4b-0303c564b463'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8376d-0502-af26-1a4b-0303c564b463'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 434c1eba-83bf-4efa-b36c-4206daaa138e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6de27468-5570-47c2-bf68-5cd4a73b85d9&request_guid=434c1eba-83bf-4efa-b36c-4206daaa138e HTTP/1.1" 200 1785 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376d-0502-af26-1a4b-0303c564b4ab +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376d-0502-af26-1a4b-0303c564b4ab +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 911d877c-cd54-471c-bbaf-ec2eedc73f7c +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 234cff55-b27e-487c-bd82-54c9d8fc9b4b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=911d877c-cd54-471c-bbaf-ec2eedc73f7c&request_guid=234cff55-b27e-487c-bd82-54c9d8fc9b4b HTTP/1.1" 200 2188 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8376d-0502-ae87-1a4b-0303c564884f_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108807&Signature=JVY%2FYt2jDWR7M7hq6lFGkL3Z2Q0%3D HTTP/1.1" 200 365477 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376d-0502-b0de-1a4b-0303c564c38f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.cursor:sfqid: 01a8376d-0502-b0de-1a4b-0303c564c38f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376d-0502-b0de-1a4b-0303c564c38f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1dbbc6e4-5e73-4a41-bf7b-bf0298f5e07a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376d-0502-b0de-1a4b-0303c564c38f?request_guid=1dbbc6e4-5e73-4a41-bf7b-bf0298f5e07a HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376d-0502-b0de-1a4b-0303c564c38f' +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1367 +DEBUG:snowflake.connector.network:Request guid: f6d7f397-52fd-4a54-9d93-05dcd62033c4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1368 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376d-0502-b0de-1a4b-0303c564c38f?request_guid=f6d7f397-52fd-4a54-9d93-05dcd62033c4 HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 302 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8376d-0502-b0de-1a4b-0303c564c38f'))] +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 1cb1d5c1-783e-4f50-851d-5c0a9860e392 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8376d-0502-b0de-1a4b-0303c564c38f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8376d-0502-b0de-1a4b-0303c564c38f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b9119387-1320-47d8-9704-063a87450a7c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1cb1d5c1-783e-4f50-851d-5c0a9860e392&request_guid=b9119387-1320-47d8-9704-063a87450a7c HTTP/1.1" 200 2190 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376d-0502-af26-1a4b-0303c564b4c3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376d-0502-af26-1a4b-0303c564b4c3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 33.34s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=d8b0973d-0250-489d-81de-930e1af27540 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 653f8cc1-bd75-40a0-afde-928863bedcde +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 08:33:43] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&submit=Submit HTTP/1.1" 500 - +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=d8b0973d-0250-489d-81de-930e1af27540&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=653f8cc1-bd75-40a0-afde-928863bedcde HTTP/1.1" 200 1556 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 0a1d19e2-3260-4e13-8925-f260bced9293 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d7fa7442-6fc6-4d2b-981b-27a032ef86ac +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0a1d19e2-3260-4e13-8925-f260bced9293&request_guid=d7fa7442-6fc6-4d2b-981b-27a032ef86ac HTTP/1.1" 200 2271 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376d-0502-ae87-1a4b-0303c5648b63 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376d-0502-ae87-1a4b-0303c5648b63 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376d-0502-ae87-1a4b-0303c5648b63' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 14e9d7d5-f038-4d60-ad71-6d8dbe852039 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376d-0502-ae87-1a4b-0303c5648b63?request_guid=14e9d7d5-f038-4d60-ad71-6d8dbe852039 HTTP/1.1" 200 1943 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376d-0502-ae87-1a4b-0303c5648b63' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6a48eb0f-f819-48cd-9b16-26b5901725e1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376d-0502-ae87-1a4b-0303c5648b63?request_guid=6a48eb0f-f819-48cd-9b16-26b5901725e1 HTTP/1.1" 200 1944 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8376d-0502-ae87-1a4b-0303c5648b63'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: b034ec55-e64f-4af0-941f-92a95bc8f266 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8376d-0502-ae87-1a4b-0303c5648b63'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8376d-0502-ae87-1a4b-0303c5648b63'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b70966f2-71b5-4d30-a33b-936aefadec95 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b034ec55-e64f-4af0-941f-92a95bc8f266&request_guid=b70966f2-71b5-4d30-a33b-936aefadec95 HTTP/1.1" 200 2276 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376d-0502-b1d6-1a4b-0303c5647d7f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376d-0502-b1d6-1a4b-0303c5647d7f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8376d-0502-ae87-1a4b-0303c564884f_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108825&Signature=Ivj0bZKamxfJ68E2VpKOTlMs04s%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8376d-0502-ae87-1a4b-0303c564884f_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108825&Signature=TKzc60DfT0Xrb07b17yTBOnmh%2B8%3D HTTP/1.1" 200 365477 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8376d-0502-ae87-1a4b-0303c564884f_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108825&Signature=8gRjneAkJHULnN%2FMzoBEZrx4KI4%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8376d-0502-ae87-1a4b-0303c564884f_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108825&Signature=AiCKKjL3ORkvd2GE2R7LE6Dq89Y%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1367 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1368 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 302 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 08:33:52] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 08:33:53] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 08:33:53] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 08:34:00] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 08:34:00] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\pgfunctions.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 13.03s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 13.04s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 13.04s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=1e74fde8-640e-46d4-90ce-633c70ff8c1a +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0d929905-d391-4d8c-98ba-7b1d65410a29 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2184870893296 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2184870893296 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2184871211648 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2184871211648 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2184871211648 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2184871211648 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2184870893296 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2184870893296 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=1e74fde8-640e-46d4-90ce-633c70ff8c1a&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=0d929905-d391-4d8c-98ba-7b1d65410a29 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=a3f0429b-e598-49c4-8ec0-bc560f86da1c +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8948fc5f-e09a-42d8-8e65-68864d0ddad6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=a3f0429b-e598-49c4-8ec0-bc560f86da1c&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=8948fc5f-e09a-42d8-8e65-68864d0ddad6 HTTP/1.1" 200 1559 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00432s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 2b971fbc-7e56-47d0-9286-9734f03d81a7 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8457c987-becc-4c16-aad5-112c6df63c7a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2b971fbc-7e56-47d0-9286-9734f03d81a7&request_guid=8457c987-becc-4c16-aad5-112c6df63c7a HTTP/1.1" 200 2200 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376f-0502-afee-1a4b-0303c5650757 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376f-0502-afee-1a4b-0303c5650757 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376f-0502-afee-1a4b-0303c5650757' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fbcc6b06-4131-4ae6-af4a-70c37218fcbf +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376f-0502-afee-1a4b-0303c5650757?request_guid=fbcc6b06-4131-4ae6-af4a-70c37218fcbf HTTP/1.1" 200 1858 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376f-0502-afee-1a4b-0303c5650757' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1a106d6a-2a69-49d6-ab06-10b5c0922b47 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376f-0502-afee-1a4b-0303c5650757?request_guid=1a106d6a-2a69-49d6-ab06-10b5c0922b47 HTTP/1.1" 200 1858 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8376f-0502-afee-1a4b-0303c5650757'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: d2eb25cc-12cf-4f5f-a825-f91b62267754 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8376f-0502-afee-1a4b-0303c5650757'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8376f-0502-afee-1a4b-0303c5650757'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9edad9af-e9e7-4a85-8cfa-752091ccfc40 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d2eb25cc-12cf-4f5f-a825-f91b62267754&request_guid=9edad9af-e9e7-4a85-8cfa-752091ccfc40 HTTP/1.1" 200 2201 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376f-0502-ae87-1a4b-0303c564fd6f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376f-0502-ae87-1a4b-0303c564fd6f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: cf4433fe-18bb-4a81-b540-24f3a277135d +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5f09df89-ba96-4e37-99e1-3ac7ff8871d1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cf4433fe-18bb-4a81-b540-24f3a277135d&request_guid=5f09df89-ba96-4e37-99e1-3ac7ff8871d1 HTTP/1.1" 200 1783 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376f-0502-b21e-1a4b-0303c564e9b7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376f-0502-b21e-1a4b-0303c564e9b7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376f-0502-b21e-1a4b-0303c564e9b7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 365e96f6-5cae-4500-bac6-ba051bd00877 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376f-0502-b21e-1a4b-0303c564e9b7?request_guid=365e96f6-5cae-4500-bac6-ba051bd00877 HTTP/1.1" 200 2177 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376f-0502-b21e-1a4b-0303c564e9b7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ea657962-6a0c-4a73-93fd-95f17d125321 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376f-0502-b21e-1a4b-0303c564e9b7?request_guid=ea657962-6a0c-4a73-93fd-95f17d125321 HTTP/1.1" 200 2177 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8376f-0502-b21e-1a4b-0303c564e9b7'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 4ee04ea3-6717-490f-b5aa-9e6a1d0373a1 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8376f-0502-b21e-1a4b-0303c564e9b7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8376f-0502-b21e-1a4b-0303c564e9b7'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3ee5a725-5f65-40b1-b92b-69f12a7fb0dd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4ee04ea3-6717-490f-b5aa-9e6a1d0373a1&request_guid=3ee5a725-5f65-40b1-b92b-69f12a7fb0dd HTTP/1.1" 200 1783 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376f-0502-af26-1a4b-0303c5651777 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376f-0502-af26-1a4b-0303c5651777 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 0142e654-0c69-48e3-9679-6495d828ed10 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d611a7bf-aafe-42c1-801f-6512304678bc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0142e654-0c69-48e3-9679-6495d828ed10&request_guid=d611a7bf-aafe-42c1-801f-6512304678bc HTTP/1.1" 200 2188 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376f-0502-b1d6-1a4b-0303c564dc4f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376f-0502-b1d6-1a4b-0303c564dc4f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376f-0502-b1d6-1a4b-0303c564dc4f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 03750215-5da4-465c-ad81-76f7acb47325 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376f-0502-b1d6-1a4b-0303c564dc4f?request_guid=03750215-5da4-465c-ad81-76f7acb47325 HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376f-0502-b1d6-1a4b-0303c564dc4f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f809eb54-bd2e-45ef-a6d4-8b7b8679bb56 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376f-0502-b1d6-1a4b-0303c564dc4f?request_guid=f809eb54-bd2e-45ef-a6d4-8b7b8679bb56 HTTP/1.1" 200 1682 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8376f-0502-b1d6-1a4b-0303c564dc4f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 0d7ca233-0822-45fc-b373-219dbc481d94 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8376f-0502-b1d6-1a4b-0303c564dc4f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8376f-0502-b1d6-1a4b-0303c564dc4f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0885c298-2f5c-4c25-95e1-6770523d71f6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0d7ca233-0822-45fc-b373-219dbc481d94&request_guid=0885c298-2f5c-4c25-95e1-6770523d71f6 HTTP/1.1" 200 2188 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376f-0502-b0de-1a4b-0303c56525c7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376f-0502-b0de-1a4b-0303c56525c7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 5.511s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=e1dbcf2e-990b-48a5-8385-f33af2b5942b +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 16dbf620-35c9-4dd7-8113-2cbc24ea2329 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=e1dbcf2e-990b-48a5-8385-f33af2b5942b&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=16dbf620-35c9-4dd7-8113-2cbc24ea2329 HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 618fbf58-80fa-491b-b212-1a6293091ba7 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 15637502-4c22-4006-9795-98aae4b4fe41 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=618fbf58-80fa-491b-b212-1a6293091ba7&request_guid=15637502-4c22-4006-9795-98aae4b4fe41 HTTP/1.1" 200 2280 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376f-0502-af26-1a4b-0303c56518cb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376f-0502-af26-1a4b-0303c56518cb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376f-0502-af26-1a4b-0303c56518cb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 572014ce-b624-44bf-9017-f9e4ae59aa97 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376f-0502-af26-1a4b-0303c56518cb?request_guid=572014ce-b624-44bf-9017-f9e4ae59aa97 HTTP/1.1" 200 1947 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8376f-0502-af26-1a4b-0303c56518cb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 04d6c9a5-2605-45a9-96e7-6dda21215802 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8376f-0502-af26-1a4b-0303c56518cb?request_guid=04d6c9a5-2605-45a9-96e7-6dda21215802 HTTP/1.1" 200 1946 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8376f-0502-af26-1a4b-0303c56518cb'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 9d370384-4ab3-49b7-88df-9650d8ae870f +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8376f-0502-af26-1a4b-0303c56518cb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8376f-0502-af26-1a4b-0303c56518cb'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2ae2e4da-f385-4d25-9e53-277357974777 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=9d370384-4ab3-49b7-88df-9650d8ae870f&request_guid=2ae2e4da-f385-4d25-9e53-277357974777 HTTP/1.1" 200 2281 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8376f-0502-b0de-1a4b-0303c56526f3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8376f-0502-b0de-1a4b-0303c56526f3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8376d-0502-ae87-1a4b-0303c564884f_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108926&Signature=%2FqGH9FKGEZYVp%2FAfy48w5WRYwnE%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8376d-0502-ae87-1a4b-0303c564884f_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108926&Signature=FITQwL8XoxmLAwsbZnpARudbFUY%3D HTTP/1.1" 200 365477 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8376d-0502-ae87-1a4b-0303c564884f_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108926&Signature=PbJAUziiVTLgJGUdCV88OUgL%2FlE%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8376d-0502-ae87-1a4b-0303c564884f_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668108926&Signature=LM1WzwUkxA97QKBVZHW5dC7NTGs%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1367 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1368 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 302 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 08:35:31] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 08:35:33] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 08:35:33] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 08:35:34] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\pgfunctions.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 65.04s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 65.05s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 65.05s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=ad615cf6-1ca8-43e5-9137-cb303b53a9b5 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a4df8b67-7525-4cba-88c1-dedbba05d687 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2141878817440 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2141878817440 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2141879119408 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2141879119408 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2141879119408 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2141879119408 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2141878817440 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2141878817440 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=ad615cf6-1ca8-43e5-9137-cb303b53a9b5&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=a4df8b67-7525-4cba-88c1-dedbba05d687 HTTP/1.1" 200 1556 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=6da5e7fe-5c70-4b3c-9897-1013a11c9a0d +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7ff6e02c-e822-4337-b048-631d95e4380d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=6da5e7fe-5c70-4b3c-9897-1013a11c9a0d&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=7ff6e02c-e822-4337-b048-631d95e4380d HTTP/1.1" 200 1558 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00189s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 06e55b24-470b-4be6-9396-3707e1ee9cde +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 61d4ea64-623e-4376-be8c-e61db78c1269 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=06e55b24-470b-4be6-9396-3707e1ee9cde&request_guid=61d4ea64-623e-4376-be8c-e61db78c1269 HTTP/1.1" 200 2195 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83772-0502-b1d6-1a4b-0303c5663483 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83772-0502-b1d6-1a4b-0303c5663483 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83772-0502-b1d6-1a4b-0303c5663483' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5e4b9fae-d692-4832-b083-fee72d9e5bdc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83772-0502-b1d6-1a4b-0303c5663483?request_guid=5e4b9fae-d692-4832-b083-fee72d9e5bdc HTTP/1.1" 200 1860 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83772-0502-b1d6-1a4b-0303c5663483' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6ea1c2bc-421b-4958-baa8-8dde17083ffe +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83772-0502-b1d6-1a4b-0303c5663483?request_guid=6ea1c2bc-421b-4958-baa8-8dde17083ffe HTTP/1.1" 200 1860 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83772-0502-b1d6-1a4b-0303c5663483'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: df41e937-bcbd-41e4-9674-9ff4f7f8e272 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83772-0502-b1d6-1a4b-0303c5663483'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83772-0502-b1d6-1a4b-0303c5663483'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 22a5d4c3-0020-40f5-ae33-8d3c12273b2f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=df41e937-bcbd-41e4-9674-9ff4f7f8e272&request_guid=22a5d4c3-0020-40f5-ae33-8d3c12273b2f HTTP/1.1" 200 2198 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83772-0502-afee-1a4b-0303c566513f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83772-0502-afee-1a4b-0303c566513f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 59f3111f-53d4-4fad-9064-39f58cc28e33 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 25b977ce-d388-4d95-964b-c7f8378aff35 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=59f3111f-53d4-4fad-9064-39f58cc28e33&request_guid=25b977ce-d388-4d95-964b-c7f8378aff35 HTTP/1.1" 200 1784 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83772-0502-af26-1a4b-0303c566437b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83772-0502-af26-1a4b-0303c566437b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83772-0502-af26-1a4b-0303c566437b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a2daba32-ef3a-48dd-ae9f-1dcb29ce71d2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83772-0502-af26-1a4b-0303c566437b?request_guid=a2daba32-ef3a-48dd-ae9f-1dcb29ce71d2 HTTP/1.1" 200 2178 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83772-0502-af26-1a4b-0303c566437b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 542407f0-db42-4421-8af7-ef3ed2296e1c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83772-0502-af26-1a4b-0303c566437b?request_guid=542407f0-db42-4421-8af7-ef3ed2296e1c HTTP/1.1" 200 2177 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83772-0502-af26-1a4b-0303c566437b'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 95f5a859-d713-43ea-bc90-958dcecfec86 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83772-0502-af26-1a4b-0303c566437b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83772-0502-af26-1a4b-0303c566437b'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 37b753a7-1ff0-4431-a8ab-1a2814ceeb3a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=95f5a859-d713-43ea-bc90-958dcecfec86&request_guid=37b753a7-1ff0-4431-a8ab-1a2814ceeb3a HTTP/1.1" 200 1787 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83772-0502-afee-1a4b-0303c5665157 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83772-0502-afee-1a4b-0303c5665157 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: c25bfa8e-98a3-4cb6-8119-d43b2e8233ba +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0ca21205-e109-4cfe-8784-396005caf7dd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c25bfa8e-98a3-4cb6-8119-d43b2e8233ba&request_guid=0ca21205-e109-4cfe-8784-396005caf7dd HTTP/1.1" 200 2194 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83772-0502-afee-1a4b-0303c566515f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83772-0502-afee-1a4b-0303c566515f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83772-0502-afee-1a4b-0303c566515f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0d89cd5a-3bca-4fbb-ac9c-6c8a6016a165 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83772-0502-afee-1a4b-0303c566515f?request_guid=0d89cd5a-3bca-4fbb-ac9c-6c8a6016a165 HTTP/1.1" 200 1679 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83772-0502-afee-1a4b-0303c566515f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 88a9619d-96b9-4756-9d14-60b9cb8968be +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83772-0502-afee-1a4b-0303c566515f?request_guid=88a9619d-96b9-4756-9d14-60b9cb8968be HTTP/1.1" 200 1679 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83772-0502-afee-1a4b-0303c566515f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: d80d54b1-b0d3-4343-a4b6-75ea05650147 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83772-0502-afee-1a4b-0303c566515f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83772-0502-afee-1a4b-0303c566515f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 621f543f-fc6b-4870-b6d3-7cc7862ce5d8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d80d54b1-b0d3-4343-a4b6-75ea05650147&request_guid=621f543f-fc6b-4870-b6d3-7cc7862ce5d8 HTTP/1.1" 200 2191 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83772-0502-b1d6-1a4b-0303c56634e3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83772-0502-b1d6-1a4b-0303c56634e3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.917s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=340ab8b9-5dcc-4f05-9ca0-d9e774d0833b +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 74da9dce-ef72-4d4f-b0c5-125968ada6d8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=340ab8b9-5dcc-4f05-9ca0-d9e774d0833b&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=74da9dce-ef72-4d4f-b0c5-125968ada6d8 HTTP/1.1" 200 1556 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: cc9e8a86-c70b-4d9a-94b6-c8cc851cb871 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3ee8180a-6b1f-4ae3-a4e1-a11f6ff4bb15 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cc9e8a86-c70b-4d9a-94b6-c8cc851cb871&request_guid=3ee8180a-6b1f-4ae3-a4e1-a11f6ff4bb15 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83773-0502-af26-1a4b-0303c56644cf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83773-0502-af26-1a4b-0303c56644cf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 333 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83773-0502-af26-1a4b-0303c56644cf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e6dd7a2b-77f7-4a03-8077-37eb47ba37dd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83773-0502-af26-1a4b-0303c56644cf?request_guid=e6dd7a2b-77f7-4a03-8077-37eb47ba37dd HTTP/1.1" 200 2089 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83773-0502-af26-1a4b-0303c56644cf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5d3f7c6a-5c4b-4ea9-a342-63e3f0fbd97f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83773-0502-af26-1a4b-0303c56644cf?request_guid=5d3f7c6a-5c4b-4ea9-a342-63e3f0fbd97f HTTP/1.1" 200 2089 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83773-0502-af26-1a4b-0303c56644cf'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 74bfd20d-eeea-40e6-b1f1-d3db93e68d04 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83773-0502-af26-1a4b-0303c56644cf'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83773-0502-af26-1a4b-0303c56644cf'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: daf1487c-044c-4d70-bdbf-8459b5af7ed3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=74bfd20d-eeea-40e6-b1f1-d3db93e68d04&request_guid=daf1487c-044c-4d70-bdbf-8459b5af7ed3 HTTP/1.1" 200 2274 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83773-0502-ae87-1a4b-0303c5661823 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83773-0502-ae87-1a4b-0303c5661823 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83773-0502-af26-1a4b-0303c56644cf_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668109150&Signature=8vVzrY8M8qZFlYr%2BkXvDPzMmjBo%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83773-0502-af26-1a4b-0303c56644cf_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668109150&Signature=TCpxKEDWOAkW1jWsIb8SenkqoN0%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83773-0502-af26-1a4b-0303c56644cf_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668109150&Signature=WqZxsIQTKRdA%2BDVvi5o%2FyDoNj%2BM%3D HTTP/1.1" 200 373803 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83773-0502-af26-1a4b-0303c56644cf_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668109150&Signature=OTJ4dJ6xlqte2kV0qTLuZHxNJ%2F0%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1367 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1368 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 434 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e93cdd1e-b1fe-4e71-a1a7-6a2145aa0576 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=e93cdd1e-b1fe-4e71-a1a7-6a2145aa0576 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 17.05s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 17.06s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 17.07s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=17b2360d-383c-4882-a1b8-26bdd12f641b +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f213a819-8a25-4775-8ef3-c76efc0248d4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2269033616992 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2269033616992 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2269033918960 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2269033918960 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2269033918960 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2269033918960 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2269033616992 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2269033616992 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=17b2360d-383c-4882-a1b8-26bdd12f641b&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=f213a819-8a25-4775-8ef3-c76efc0248d4 HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=d43f4b9b-2ef3-475b-931c-0e1e0e392391 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7b86d2f5-c751-4c98-9561-2426586d49aa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=d43f4b9b-2ef3-475b-931c-0e1e0e392391&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=7b86d2f5-c751-4c98-9561-2426586d49aa HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00181s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 1a68e605-3dda-453b-b55f-5594c9f2e028 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7c2200fa-3c38-400f-804f-fead87e7dd07 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1a68e605-3dda-453b-b55f-5594c9f2e028&request_guid=7c2200fa-3c38-400f-804f-fead87e7dd07 HTTP/1.1" 200 2200 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83775-0502-ae87-1a4b-0303c567102b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83775-0502-ae87-1a4b-0303c567102b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83775-0502-ae87-1a4b-0303c567102b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6dac801b-e171-4f1b-9b51-08589e65bb10 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83775-0502-ae87-1a4b-0303c567102b?request_guid=6dac801b-e171-4f1b-9b51-08589e65bb10 HTTP/1.1" 200 1873 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83775-0502-ae87-1a4b-0303c567102b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0d3f0a02-2ede-4fdd-9276-270b0a36ac02 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83775-0502-ae87-1a4b-0303c567102b?request_guid=0d3f0a02-2ede-4fdd-9276-270b0a36ac02 HTTP/1.1" 200 1874 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83775-0502-ae87-1a4b-0303c567102b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 0558ef0b-10b8-4153-87c5-e4b2b91211e9 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83775-0502-ae87-1a4b-0303c567102b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83775-0502-ae87-1a4b-0303c567102b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f34a3612-a57f-411a-8f9e-f8300e718394 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0558ef0b-10b8-4153-87c5-e4b2b91211e9&request_guid=f34a3612-a57f-411a-8f9e-f8300e718394 HTTP/1.1" 200 2196 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83775-0502-b0de-1a4b-0303c566e813 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83775-0502-b0de-1a4b-0303c566e813 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 58e43b10-e6bd-48cb-89fe-db77daae54ed +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c75fc9b8-313c-4669-bed6-a1bec524f7fa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=58e43b10-e6bd-48cb-89fe-db77daae54ed&request_guid=c75fc9b8-313c-4669-bed6-a1bec524f7fa HTTP/1.1" 200 1789 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83775-0502-afee-1a4b-0303c566ddff +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83775-0502-afee-1a4b-0303c566ddff +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83775-0502-afee-1a4b-0303c566ddff' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 959e2dd3-5568-424b-92a8-458edc8d1cd2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83775-0502-afee-1a4b-0303c566ddff?request_guid=959e2dd3-5568-424b-92a8-458edc8d1cd2 HTTP/1.1" 200 2178 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83775-0502-afee-1a4b-0303c566ddff' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0be977bc-2f6b-43ae-a46d-5e21b0177325 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83775-0502-afee-1a4b-0303c566ddff?request_guid=0be977bc-2f6b-43ae-a46d-5e21b0177325 HTTP/1.1" 200 2178 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83775-0502-afee-1a4b-0303c566ddff'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 2e564bf9-fc67-4a40-8020-58eff94a86fb +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83775-0502-afee-1a4b-0303c566ddff'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83775-0502-afee-1a4b-0303c566ddff'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5aa8390c-5ab1-40fc-b21c-fe1b7f38ea43 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2e564bf9-fc67-4a40-8020-58eff94a86fb&request_guid=5aa8390c-5ab1-40fc-b21c-fe1b7f38ea43 HTTP/1.1" 200 1790 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83775-0502-ae87-1a4b-0303c56710bf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83775-0502-ae87-1a4b-0303c56710bf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 1493874d-9dea-442a-ad7a-d03da260dd3d +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a0672d46-5e70-4a02-9bbb-3f3313d756a5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1493874d-9dea-442a-ad7a-d03da260dd3d&request_guid=a0672d46-5e70-4a02-9bbb-3f3313d756a5 HTTP/1.1" 200 2192 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83775-0502-af26-1a4b-0303c566f213 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83775-0502-af26-1a4b-0303c566f213 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83775-0502-af26-1a4b-0303c566f213' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f5b50ac2-1e80-44c5-b903-757deec99528 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83775-0502-af26-1a4b-0303c566f213?request_guid=f5b50ac2-1e80-44c5-b903-757deec99528 HTTP/1.1" 200 1682 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83775-0502-af26-1a4b-0303c566f213' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: eda34da2-1f1a-4954-b0ea-17c8a1c85263 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83775-0502-af26-1a4b-0303c566f213?request_guid=eda34da2-1f1a-4954-b0ea-17c8a1c85263 HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83775-0502-af26-1a4b-0303c566f213'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 21505ba1-cb89-41a4-9964-3a4f845f21fc +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83775-0502-af26-1a4b-0303c566f213'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83775-0502-af26-1a4b-0303c566f213'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 621540c2-b836-40b1-836a-faf5c3d5e0d1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=21505ba1-cb89-41a4-9964-3a4f845f21fc&request_guid=621540c2-b836-40b1-836a-faf5c3d5e0d1 HTTP/1.1" 200 2196 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83775-0502-b21e-1a4b-0303c5670177 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83775-0502-b21e-1a4b-0303c5670177 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 3.013s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=d2c9eb40-cc42-4024-8014-7375875834cf +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4e28cbcb-735c-45d7-986b-58d8971c0951 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=d2c9eb40-cc42-4024-8014-7375875834cf&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=4e28cbcb-735c-45d7-986b-58d8971c0951 HTTP/1.1" 200 1549 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 64b075f1-20f2-4494-b616-78404ac3b6d1 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 95fccb70-7afe-4ed5-9bf7-c20953249d50 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=64b075f1-20f2-4494-b616-78404ac3b6d1&request_guid=95fccb70-7afe-4ed5-9bf7-c20953249d50 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83775-0502-ae87-1a4b-0303c567111b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83775-0502-ae87-1a4b-0303c567111b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 333 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83775-0502-ae87-1a4b-0303c567111b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 13eb6a6d-74dc-47c0-af99-a83365f59059 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83775-0502-ae87-1a4b-0303c567111b?request_guid=13eb6a6d-74dc-47c0-af99-a83365f59059 HTTP/1.1" 200 2089 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83775-0502-ae87-1a4b-0303c567111b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4c17e63c-0108-4c2c-8061-2a526a14737f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83775-0502-ae87-1a4b-0303c567111b?request_guid=4c17e63c-0108-4c2c-8061-2a526a14737f HTTP/1.1" 200 2088 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83775-0502-ae87-1a4b-0303c567111b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 6fd70941-ecb6-490d-bb55-1d024fd11c19 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83775-0502-ae87-1a4b-0303c567111b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83775-0502-ae87-1a4b-0303c567111b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 79aa38d7-78e5-41d2-b42c-ef7a7134b06c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6fd70941-ecb6-490d-bb55-1d024fd11c19&request_guid=79aa38d7-78e5-41d2-b42c-ef7a7134b06c HTTP/1.1" 200 2273 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83775-0502-ae87-1a4b-0303c567114b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83775-0502-ae87-1a4b-0303c567114b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83775-0502-ae87-1a4b-0303c567111b_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668109301&Signature=onRBoUSLkUMR0D9Zk0zW16lBWok%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83775-0502-ae87-1a4b-0303c567111b_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668109301&Signature=HaRzSkNioOWK%2B15QIV2hN9QIGkY%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83775-0502-ae87-1a4b-0303c567111b_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668109301&Signature=uYf3wx65OYTkGUqmMiW6%2B8B%2Fra0%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83775-0502-ae87-1a4b-0303c567111b_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668109301&Signature=4gU0BleubTbC33HwwVqDqraH08k%3D HTTP/1.1" 200 381676 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1367 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1368 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 566 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: aedf4df1-073b-432b-af69-fede77cab5bf +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=aedf4df1-073b-432b-af69-fede77cab5bf HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\pgfunctions.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.722s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.726s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.732s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=c92bb370-e0a6-4e1f-8b8f-3c0bbcfcee71 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 70b1125d-3273-4d8c-9266-8e080c5ebec6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1500498924048 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1500498924048 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1500499226016 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1500499226016 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1500499226016 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1500499226016 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1500498924048 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1500498924048 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=c92bb370-e0a6-4e1f-8b8f-3c0bbcfcee71&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=70b1125d-3273-4d8c-9266-8e080c5ebec6 HTTP/1.1" 200 1558 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=5b117d12-3649-4649-82c3-415faf39304e +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0a7ed5f2-0411-469b-9842-3a287dc417cf +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=5b117d12-3649-4649-82c3-415faf39304e&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=0a7ed5f2-0411-469b-9842-3a287dc417cf HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00151s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 0e962cb1-9c58-4feb-9591-c2f106e470c1 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 26250ce7-7c7b-4b18-9aa1-24ea4390aa08 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0e962cb1-9c58-4feb-9591-c2f106e470c1&request_guid=26250ce7-7c7b-4b18-9aa1-24ea4390aa08 HTTP/1.1" 200 2196 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83839-0502-b0de-1a4b-0303c59d8127 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83839-0502-b0de-1a4b-0303c59d8127 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83839-0502-b0de-1a4b-0303c59d8127' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4f6a1141-7ba2-4b11-ab2d-93c1afa11f60 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83839-0502-b0de-1a4b-0303c59d8127?request_guid=4f6a1141-7ba2-4b11-ab2d-93c1afa11f60 HTTP/1.1" 200 1865 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83839-0502-b0de-1a4b-0303c59d8127' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 453c2415-42a0-4c4c-9202-9f1fb0f39c7a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83839-0502-b0de-1a4b-0303c59d8127?request_guid=453c2415-42a0-4c4c-9202-9f1fb0f39c7a HTTP/1.1" 200 1865 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83839-0502-b0de-1a4b-0303c59d8127'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 5a20d8ec-5421-4fe9-adc9-57601b529373 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83839-0502-b0de-1a4b-0303c59d8127'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83839-0502-b0de-1a4b-0303c59d8127'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0243c684-a1d1-4601-aad7-e9f22af13ec4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5a20d8ec-5421-4fe9-adc9-57601b529373&request_guid=0243c684-a1d1-4601-aad7-e9f22af13ec4 HTTP/1.1" 200 2196 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83839-0502-b0de-1a4b-0303c59d81f3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83839-0502-b0de-1a4b-0303c59d81f3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 5278efee-7e13-48f7-9ac1-978ae932f16e +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d0e6a7f5-d6a9-4046-b8b4-1a396ac2297c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5278efee-7e13-48f7-9ac1-978ae932f16e&request_guid=d0e6a7f5-d6a9-4046-b8b4-1a396ac2297c HTTP/1.1" 200 1789 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83839-0502-afee-1a4b-0303c59d6bd3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83839-0502-afee-1a4b-0303c59d6bd3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83839-0502-afee-1a4b-0303c59d6bd3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1b077bda-c6c0-47f6-b1a3-b394344d2911 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83839-0502-afee-1a4b-0303c59d6bd3?request_guid=1b077bda-c6c0-47f6-b1a3-b394344d2911 HTTP/1.1" 200 2179 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83839-0502-afee-1a4b-0303c59d6bd3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 24c10d7d-f639-4856-91d5-9c8afed72151 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83839-0502-afee-1a4b-0303c59d6bd3?request_guid=24c10d7d-f639-4856-91d5-9c8afed72151 HTTP/1.1" 200 2178 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83839-0502-afee-1a4b-0303c59d6bd3'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 5aa3aa55-00db-4562-9734-46bc48601210 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83839-0502-afee-1a4b-0303c59d6bd3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83839-0502-afee-1a4b-0303c59d6bd3'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5f551e11-95ee-46be-9f07-d3b9effed297 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5aa3aa55-00db-4562-9734-46bc48601210&request_guid=5f551e11-95ee-46be-9f07-d3b9effed297 HTTP/1.1" 200 1785 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83839-0502-b1d6-1a4b-0303c59d7d33 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83839-0502-b1d6-1a4b-0303c59d7d33 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 45e1368d-5a6b-46e4-8a86-9de7339f67f4 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f28e9d86-d03a-4a71-9294-a6d760566668 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=45e1368d-5a6b-46e4-8a86-9de7339f67f4&request_guid=f28e9d86-d03a-4a71-9294-a6d760566668 HTTP/1.1" 200 2188 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83839-0502-b1d6-1a4b-0303c59d7d47 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83839-0502-b1d6-1a4b-0303c59d7d47 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83839-0502-b1d6-1a4b-0303c59d7d47' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 36142ad4-1e2c-4d7e-b263-cc477a29ccce +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83839-0502-b1d6-1a4b-0303c59d7d47?request_guid=36142ad4-1e2c-4d7e-b263-cc477a29ccce HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83839-0502-b1d6-1a4b-0303c59d7d47' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 50ac20ff-ce99-4d60-aa5b-f60c61b1370f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83839-0502-b1d6-1a4b-0303c59d7d47?request_guid=50ac20ff-ce99-4d60-aa5b-f60c61b1370f HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83839-0502-b1d6-1a4b-0303c59d7d47'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: fc221806-93dc-40a3-8541-0071b9f0ca58 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83839-0502-b1d6-1a4b-0303c59d7d47'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83839-0502-b1d6-1a4b-0303c59d7d47'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2c7b5f61-f1e1-4bc9-bb6e-49f5c95eac67 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=fc221806-93dc-40a3-8541-0071b9f0ca58&request_guid=2c7b5f61-f1e1-4bc9-bb6e-49f5c95eac67 HTTP/1.1" 200 2190 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83839-0502-af26-1a4b-0303c59d4ff3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83839-0502-af26-1a4b-0303c59d4ff3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 4.86s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=deae7431-c3fb-449b-b0a8-f5b128360690 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0996c37d-7897-4262-aa31-50a58ee3aff0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=deae7431-c3fb-449b-b0a8-f5b128360690&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=0996c37d-7897-4262-aa31-50a58ee3aff0 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 56e1629b-d560-4aa0-a7bc-842def3d1607 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 708bb583-b580-4bc5-b3a8-12897d6e3745 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=56e1629b-d560-4aa0-a7bc-842def3d1607&request_guid=708bb583-b580-4bc5-b3a8-12897d6e3745 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83839-0502-ae87-1a4b-0303c59da043 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83839-0502-ae87-1a4b-0303c59da043 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 333 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83839-0502-ae87-1a4b-0303c59da043' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 703b073c-5768-4f3b-800b-ca8689591dfc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83839-0502-ae87-1a4b-0303c59da043?request_guid=703b073c-5768-4f3b-800b-ca8689591dfc HTTP/1.1" 200 2092 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83839-0502-ae87-1a4b-0303c59da043' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 40d7a23e-affa-4306-8a1e-7f93b51a696c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83839-0502-ae87-1a4b-0303c59da043?request_guid=40d7a23e-affa-4306-8a1e-7f93b51a696c HTTP/1.1" 200 2092 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83839-0502-ae87-1a4b-0303c59da043'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: aed62dc6-1695-49d6-b80f-caa2f41463d9 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83839-0502-ae87-1a4b-0303c59da043'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83839-0502-ae87-1a4b-0303c59da043'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f9923a5a-763b-45b2-8e9e-2fbd538a339b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=aed62dc6-1695-49d6-b80f-caa2f41463d9&request_guid=f9923a5a-763b-45b2-8e9e-2fbd538a339b HTTP/1.1" 200 2323 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83839-0502-ae87-1a4b-0303c59da0ab +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83839-0502-ae87-1a4b-0303c59da0ab +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=5 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83839-0502-ae87-1a4b-0303c59da043_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121070&Signature=87vw8r9wOUpR69da1cyfR186RU0%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83839-0502-ae87-1a4b-0303c59da043_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121070&Signature=iUy4zXUP9zLXZKPCOAvE2x%2BYsx8%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83839-0502-ae87-1a4b-0303c59da043_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121070&Signature=eewYQ34Fvo6lThX8YHd%2FLICpPTU%3D HTTP/1.1" 200 247782 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 2 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83839-0502-ae87-1a4b-0303c59da043_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121070&Signature=Rba7oOX2Fz1YaiKN0c83jWI4V9I%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83839-0502-ae87-1a4b-0303c59da043_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121070&Signature=fuQD5y73vuwnz%2BQQwJoPFMOCc4w%3D HTTP/1.1" 200 436252 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1367 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1368 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1368 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 2, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2734 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1054 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3269s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3315s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3377s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=a6659247-23d2-45a8-a878-41ba84c2a0f8 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 199076d9-1baa-45aa-8411-c98687b1d69a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2295860958816 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2295860958816 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2295861260784 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2295861260784 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2295861260784 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2295861260784 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2295860958816 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2295860958816 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=a6659247-23d2-45a8-a878-41ba84c2a0f8&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=199076d9-1baa-45aa-8411-c98687b1d69a HTTP/1.1" 200 1547 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=ee039640-6888-4fd2-bd29-edc50c29cb6d +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c7060d1e-2fb9-47fb-a731-9c5ecb4a83a2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=ee039640-6888-4fd2-bd29-edc50c29cb6d&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=c7060d1e-2fb9-47fb-a731-9c5ecb4a83a2 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00155s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: c03c6fb8-b28a-4e2a-ad25-c9534880b313 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a92b0981-cb5d-4a46-a421-58b7c26be74f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c03c6fb8-b28a-4e2a-ad25-c9534880b313&request_guid=a92b0981-cb5d-4a46-a421-58b7c26be74f HTTP/1.1" 200 2199 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8383b-0502-afee-1a4b-0303c59e1a2f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8383b-0502-afee-1a4b-0303c59e1a2f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8383b-0502-afee-1a4b-0303c59e1a2f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 778b257b-f9f3-4f4e-84e2-cceef700533c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8383b-0502-afee-1a4b-0303c59e1a2f?request_guid=778b257b-f9f3-4f4e-84e2-cceef700533c HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8383b-0502-afee-1a4b-0303c59e1a2f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6ec3dba3-6f06-4b25-b8d7-021fd92f0e65 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8383b-0502-afee-1a4b-0303c59e1a2f?request_guid=6ec3dba3-6f06-4b25-b8d7-021fd92f0e65 HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8383b-0502-afee-1a4b-0303c59e1a2f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: d7113ef1-29a6-449e-8311-b100a493a447 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8383b-0502-afee-1a4b-0303c59e1a2f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8383b-0502-afee-1a4b-0303c59e1a2f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0ef9b02c-8483-44bf-9a27-7c2212e6d15e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d7113ef1-29a6-449e-8311-b100a493a447&request_guid=0ef9b02c-8483-44bf-9a27-7c2212e6d15e HTTP/1.1" 200 2197 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8383b-0502-b0de-1a4b-0303c59e24b3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8383b-0502-b0de-1a4b-0303c59e24b3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 6e19fa27-4238-471b-bc0f-12caed355bf4 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b51c8427-764a-44a5-80bb-58dffd241781 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6e19fa27-4238-471b-bc0f-12caed355bf4&request_guid=b51c8427-764a-44a5-80bb-58dffd241781 HTTP/1.1" 200 1782 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8383b-0502-b0de-1a4b-0303c59e24bb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8383b-0502-b0de-1a4b-0303c59e24bb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8383b-0502-b0de-1a4b-0303c59e24bb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f0e8347c-9dc1-4ce2-939d-25fa019e414e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8383b-0502-b0de-1a4b-0303c59e24bb?request_guid=f0e8347c-9dc1-4ce2-939d-25fa019e414e HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8383b-0502-b0de-1a4b-0303c59e24bb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3ddd54eb-e589-46ab-a2c2-e0f68873fada +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8383b-0502-b0de-1a4b-0303c59e24bb?request_guid=3ddd54eb-e589-46ab-a2c2-e0f68873fada HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8383b-0502-b0de-1a4b-0303c59e24bb'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: f9ced0c0-1cc7-4def-844b-582d37eaf522 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8383b-0502-b0de-1a4b-0303c59e24bb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8383b-0502-b0de-1a4b-0303c59e24bb'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8f3cedb7-4737-49a1-8ccf-afb650a875b4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f9ced0c0-1cc7-4def-844b-582d37eaf522&request_guid=8f3cedb7-4737-49a1-8ccf-afb650a875b4 HTTP/1.1" 200 1786 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8383b-0502-afee-1a4b-0303c59e1a5f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8383b-0502-afee-1a4b-0303c59e1a5f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 183f16b1-c8ec-41c8-ac6f-de098be34cc9 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 258f7254-e733-4fec-9e58-aaeb9f7f472b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=183f16b1-c8ec-41c8-ac6f-de098be34cc9&request_guid=258f7254-e733-4fec-9e58-aaeb9f7f472b HTTP/1.1" 200 2187 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8383b-0502-b1d6-1a4b-0303c59e0bbf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8383b-0502-b1d6-1a4b-0303c59e0bbf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8383b-0502-b1d6-1a4b-0303c59e0bbf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4d2cd0c8-8876-4332-b6d9-1bb1a0eb3885 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8383b-0502-b1d6-1a4b-0303c59e0bbf?request_guid=4d2cd0c8-8876-4332-b6d9-1bb1a0eb3885 HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8383b-0502-b1d6-1a4b-0303c59e0bbf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 226a19b7-2743-45ea-8a21-922ac27a97a7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8383b-0502-b1d6-1a4b-0303c59e0bbf?request_guid=226a19b7-2743-45ea-8a21-922ac27a97a7 HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8383b-0502-b1d6-1a4b-0303c59e0bbf'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: f549056d-86bc-479e-8c21-8a290fc1c48f +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8383b-0502-b1d6-1a4b-0303c59e0bbf'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8383b-0502-b1d6-1a4b-0303c59e0bbf'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 84ff4011-2696-43c2-b5fc-a4248c70d91f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f549056d-86bc-479e-8c21-8a290fc1c48f&request_guid=84ff4011-2696-43c2-b5fc-a4248c70d91f HTTP/1.1" 200 2186 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8383b-0502-b0de-1a4b-0303c59e2517 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8383b-0502-b0de-1a4b-0303c59e2517 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 2.811s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=21f76012-1470-408c-9672-bde293be01f4 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 429222b0-35dd-4ae6-84a5-e934e7c85582 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=21f76012-1470-408c-9672-bde293be01f4&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=429222b0-35dd-4ae6-84a5-e934e7c85582 HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: c12d7827-36aa-488f-a741-c39da369aff5 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bfa433ff-f2f0-4d7c-88d6-85254ffa073a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c12d7827-36aa-488f-a741-c39da369aff5&request_guid=bfa433ff-f2f0-4d7c-88d6-85254ffa073a HTTP/1.1" 200 2329 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8383b-0502-b1d6-1a4b-0303c59e0c43 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8383b-0502-b1d6-1a4b-0303c59e0c43 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=5 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8383b-0502-b1d6-1a4b-0303c59e0c43' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ce6c92d1-79dc-4761-a973-24934c5ac9ca +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8383b-0502-b1d6-1a4b-0303c59e0c43?request_guid=ce6c92d1-79dc-4761-a973-24934c5ac9ca HTTP/1.1" 200 1946 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8383b-0502-b1d6-1a4b-0303c59e0c43' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4f004fab-f8ee-469f-bd97-351243fc209d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8383b-0502-b1d6-1a4b-0303c59e0c43?request_guid=4f004fab-f8ee-469f-bd97-351243fc209d HTTP/1.1" 200 1944 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8383b-0502-b1d6-1a4b-0303c59e0c43'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 80af7ad4-6f92-4882-b916-838226a5de1a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8383b-0502-b1d6-1a4b-0303c59e0c43'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8383b-0502-b1d6-1a4b-0303c59e0c43'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e521c206-7bc8-4893-8b95-d6d68e9f7ff1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=80af7ad4-6f92-4882-b916-838226a5de1a&request_guid=e521c206-7bc8-4893-8b95-d6d68e9f7ff1 HTTP/1.1" 200 2339 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8383b-0502-afee-1a4b-0303c59e1aeb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8383b-0502-afee-1a4b-0303c59e1aeb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=5 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83839-0502-ae87-1a4b-0303c59da043_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121199&Signature=frlcqTHZmZKlR2IJWT3FGu%2FQ9ic%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83839-0502-ae87-1a4b-0303c59da043_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121199&Signature=bo13%2BPkQcLdBLE0ScK%2BER7amrbg%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83839-0502-ae87-1a4b-0303c59da043_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121199&Signature=%2FwdMXnvzl1D963Wnai2%2Fevg4FWk%3D HTTP/1.1" 200 436252 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83839-0502-ae87-1a4b-0303c59da043_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121199&Signature=L9SI4cNjH4GvUB2jSYUhQ9BB9Mo%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83839-0502-ae87-1a4b-0303c59da043_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121199&Signature=gktYGbQFUJM47Wj%2B%2BsbjaAXVMfs%3D HTTP/1.1" 200 247782 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1367 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1368 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1368 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 2 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 2, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2734 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1054 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\pgfunctions.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3171s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3216s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3251s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=beea790f-46bb-4f19-81a4-724194b7a1af +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a1bf4ddd-f6ed-486f-b874-67901ef2c1c7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2725907076704 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2725907076704 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2725907378672 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2725907378672 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2725907378672 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2725907378672 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2725907076704 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2725907076704 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=beea790f-46bb-4f19-81a4-724194b7a1af&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=a1bf4ddd-f6ed-486f-b874-67901ef2c1c7 HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=920634ee-dc3e-41e7-8318-76b6acf20936 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 47fba3fd-adfb-4923-9eb6-3aa6069850c2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=920634ee-dc3e-41e7-8318-76b6acf20936&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=47fba3fd-adfb-4923-9eb6-3aa6069850c2 HTTP/1.1" 200 1555 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00149s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: a2b359fb-5ebb-4593-afca-39cd5132c36e +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f655d69a-77e0-4e71-a50d-5ea0f5b2f8e9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a2b359fb-5ebb-4593-afca-39cd5132c36e&request_guid=f655d69a-77e0-4e71-a50d-5ea0f5b2f8e9 HTTP/1.1" 200 2196 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8383f-0502-b0de-1a4b-0303c59f400b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8383f-0502-b0de-1a4b-0303c59f400b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8383f-0502-b0de-1a4b-0303c59f400b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4824738a-6064-4528-993d-6ae5dea0bb34 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8383f-0502-b0de-1a4b-0303c59f400b?request_guid=4824738a-6064-4528-993d-6ae5dea0bb34 HTTP/1.1" 200 1864 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8383f-0502-b0de-1a4b-0303c59f400b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2adb1ce6-8d5a-478f-8efc-48239b59394e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8383f-0502-b0de-1a4b-0303c59f400b?request_guid=2adb1ce6-8d5a-478f-8efc-48239b59394e HTTP/1.1" 200 1865 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8383f-0502-b0de-1a4b-0303c59f400b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 5d13a8f5-7df3-4eee-8c69-f7c92f92cce4 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8383f-0502-b0de-1a4b-0303c59f400b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8383f-0502-b0de-1a4b-0303c59f400b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2e6caa6b-0e2b-42f7-af17-378a44b51eee +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5d13a8f5-7df3-4eee-8c69-f7c92f92cce4&request_guid=2e6caa6b-0e2b-42f7-af17-378a44b51eee HTTP/1.1" 200 2200 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8383f-0502-ae87-1a4b-0303c59f2ba3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8383f-0502-ae87-1a4b-0303c59f2ba3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: cb6389f8-6114-4653-81d9-c1051a5d8724 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a0a7389c-e9c5-4a9c-9188-f39452b67ba2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cb6389f8-6114-4653-81d9-c1051a5d8724&request_guid=a0a7389c-e9c5-4a9c-9188-f39452b67ba2 HTTP/1.1" 200 1786 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8383f-0502-b0de-1a4b-0303c59f4063 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8383f-0502-b0de-1a4b-0303c59f4063 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8383f-0502-b0de-1a4b-0303c59f4063' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ca4fb76e-cd58-4b7f-bb58-dcd7399c607c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8383f-0502-b0de-1a4b-0303c59f4063?request_guid=ca4fb76e-cd58-4b7f-bb58-dcd7399c607c HTTP/1.1" 200 2184 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8383f-0502-b0de-1a4b-0303c59f4063' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5530118a-4e4c-4611-a9fc-39659fa2fda6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8383f-0502-b0de-1a4b-0303c59f4063?request_guid=5530118a-4e4c-4611-a9fc-39659fa2fda6 HTTP/1.1" 200 2183 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8383f-0502-b0de-1a4b-0303c59f4063'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 4ee9f317-6834-493b-be1f-c18836266c11 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8383f-0502-b0de-1a4b-0303c59f4063'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8383f-0502-b0de-1a4b-0303c59f4063'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a77ddb0b-47a0-4970-adbf-009fc32619d8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4ee9f317-6834-493b-be1f-c18836266c11&request_guid=a77ddb0b-47a0-4970-adbf-009fc32619d8 HTTP/1.1" 200 1785 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8383f-0502-b1d6-1a4b-0303c59f3893 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8383f-0502-b1d6-1a4b-0303c59f3893 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 5e1f28e1-79ee-4429-8355-74526ecc032b +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9cbf12ca-280e-4d90-a270-2551a9c8e3b7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5e1f28e1-79ee-4429-8355-74526ecc032b&request_guid=9cbf12ca-280e-4d90-a270-2551a9c8e3b7 HTTP/1.1" 200 2194 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8383f-0502-ae87-1a4b-0303c59f2bef +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8383f-0502-ae87-1a4b-0303c59f2bef +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8383f-0502-ae87-1a4b-0303c59f2bef' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7b6dfc02-b801-4893-8548-da2a057cfaa2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8383f-0502-ae87-1a4b-0303c59f2bef?request_guid=7b6dfc02-b801-4893-8548-da2a057cfaa2 HTTP/1.1" 200 1685 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8383f-0502-ae87-1a4b-0303c59f2bef' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2d4ed3c8-7b39-46cb-9f7f-d92081c78b3b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8383f-0502-ae87-1a4b-0303c59f2bef?request_guid=2d4ed3c8-7b39-46cb-9f7f-d92081c78b3b HTTP/1.1" 200 1686 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8383f-0502-ae87-1a4b-0303c59f2bef'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 59efc6a8-0cc6-41e3-b057-4f9b4fe82491 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8383f-0502-ae87-1a4b-0303c59f2bef'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8383f-0502-ae87-1a4b-0303c59f2bef'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cd6a926d-18a2-4f10-ae1f-b22a9824998d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=59efc6a8-0cc6-41e3-b057-4f9b4fe82491&request_guid=cd6a926d-18a2-4f10-ae1f-b22a9824998d HTTP/1.1" 200 2191 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8383f-0502-af26-1a4b-0303c59f1cbf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8383f-0502-af26-1a4b-0303c59f1cbf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 2.606s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=f5c5e952-9d8b-4e6f-89ad-7277f82d1d23 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5c03fe36-6fa1-4725-bcf6-a8ae962c6100 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=f5c5e952-9d8b-4e6f-89ad-7277f82d1d23&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=5c03fe36-6fa1-4725-bcf6-a8ae962c6100 HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: aa1466b6-7939-4108-8dbf-24061405b6ee +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e56d31db-1420-4a36-9451-2ddd033233e3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=aa1466b6-7939-4108-8dbf-24061405b6ee&request_guid=e56d31db-1420-4a36-9451-2ddd033233e3 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8383f-0502-af26-1a4b-0303c59f1d57 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8383f-0502-af26-1a4b-0303c59f1d57 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=5 +INFO:snowflake.connector.cursor:Number of results in first chunk: 333 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8383f-0502-af26-1a4b-0303c59f1d57' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9b2b4457-0ccb-478f-8ca7-1c1df4acb3db +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8383f-0502-af26-1a4b-0303c59f1d57?request_guid=9b2b4457-0ccb-478f-8ca7-1c1df4acb3db HTTP/1.1" 200 2087 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8383f-0502-af26-1a4b-0303c59f1d57' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 979c9b41-ffe2-4368-b4ed-d33a9ebb62aa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8383f-0502-af26-1a4b-0303c59f1d57?request_guid=979c9b41-ffe2-4368-b4ed-d33a9ebb62aa HTTP/1.1" 200 2088 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8383f-0502-af26-1a4b-0303c59f1d57'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: cbf0d2cf-afff-4efa-bc6b-f06c1b138d9c +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8383f-0502-af26-1a4b-0303c59f1d57'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8383f-0502-af26-1a4b-0303c59f1d57'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5beaa32d-b54c-45da-b9f6-83abbce247d8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cbf0d2cf-afff-4efa-bc6b-f06c1b138d9c&request_guid=5beaa32d-b54c-45da-b9f6-83abbce247d8 HTTP/1.1" 200 2369 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8383f-0502-af26-1a4b-0303c59f1de7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8383f-0502-af26-1a4b-0303c59f1de7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=6 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8383f-0502-af26-1a4b-0303c59f1d57_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121402&Signature=uCb7IbWe1LUSPJsABK7sa4FF97Y%3D HTTP/1.1" 200 23598 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8383f-0502-af26-1a4b-0303c59f1d57_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121402&Signature=sPNEB6n0Tm%2FSb2fuzYAJUczWzPA%3D HTTP/1.1" 200 131984 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 333 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8383f-0502-af26-1a4b-0303c59f1d57_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121402&Signature=hx%2Fif2ZBgjH67wfXH%2BrRmw7bfXA%3D HTTP/1.1" 200 436252 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8383f-0502-af26-1a4b-0303c59f1d57_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121402&Signature=Q3wIycikcoDzD2B%2BIiq79g3Q7LM%3D HTTP/1.1" 200 260735 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 334 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8383f-0502-af26-1a4b-0303c59f1d57_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121402&Signature=VfhdVKsaqgiFA3ki%2B24U%2B%2B3rTjM%3D HTTP/1.1" 200 247782 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8383f-0502-af26-1a4b-0303c59f1d57_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121402&Signature=S39CVrYe6P80yBC%2B7BZ6PgK9dsk%3D HTTP/1.1" 200 10490 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 684 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 2 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1367 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1368 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1368 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 2, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2734 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1054 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 132 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.331s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3353s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3389s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=25a6fef3-caf4-47cf-be65-68cbe9ef07d5 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 961bb617-2adb-4367-8e83-932bbbf24ab0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2417394915056 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2417394915056 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2417395217024 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2417395217024 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2417395217024 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2417395217024 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2417394915056 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2417394915056 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=25a6fef3-caf4-47cf-be65-68cbe9ef07d5&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=961bb617-2adb-4367-8e83-932bbbf24ab0 HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=3a4a517c-323d-4040-a93f-ba7eb152c875 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2fc30c0a-71b7-460e-8336-111992c0f8b1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=3a4a517c-323d-4040-a93f-ba7eb152c875&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=2fc30c0a-71b7-460e-8336-111992c0f8b1 HTTP/1.1" 200 1556 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00243s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: b4398ee3-cb54-4e8b-82ae-88fd91554d78 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2f70b6e8-5ba6-419e-b67d-8336d46bc5c7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b4398ee3-cb54-4e8b-82ae-88fd91554d78&request_guid=2f70b6e8-5ba6-419e-b67d-8336d46bc5c7 HTTP/1.1" 200 2195 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83841-0502-af26-1a4b-0303c59f9f93 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83841-0502-af26-1a4b-0303c59f9f93 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83841-0502-af26-1a4b-0303c59f9f93' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cfb8d357-22e5-4f47-adc6-e4a01c7422a2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83841-0502-af26-1a4b-0303c59f9f93?request_guid=cfb8d357-22e5-4f47-adc6-e4a01c7422a2 HTTP/1.1" 200 1857 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83841-0502-af26-1a4b-0303c59f9f93' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 869f9706-f6e2-4361-a271-6f54a18875d8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83841-0502-af26-1a4b-0303c59f9f93?request_guid=869f9706-f6e2-4361-a271-6f54a18875d8 HTTP/1.1" 200 1857 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83841-0502-af26-1a4b-0303c59f9f93'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: c3c6e08d-a82b-4812-92bd-a403b3b23582 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83841-0502-af26-1a4b-0303c59f9f93'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83841-0502-af26-1a4b-0303c59f9f93'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 57bcd028-80c1-43ba-8209-cb8033575557 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c3c6e08d-a82b-4812-92bd-a403b3b23582&request_guid=57bcd028-80c1-43ba-8209-cb8033575557 HTTP/1.1" 200 2199 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83841-0502-ae87-1a4b-0303c59fae7f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83841-0502-ae87-1a4b-0303c59fae7f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 87d2a317-7adc-4b19-8c68-07a92b45fa0a +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7a2b3211-d544-4f83-8584-7fa31a883b14 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=87d2a317-7adc-4b19-8c68-07a92b45fa0a&request_guid=7a2b3211-d544-4f83-8584-7fa31a883b14 HTTP/1.1" 200 1784 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83841-0502-b0de-1a4b-0303c59fd40b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83841-0502-b0de-1a4b-0303c59fd40b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83841-0502-b0de-1a4b-0303c59fd40b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5c5321c1-0039-40e5-9a86-063a373b36e3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83841-0502-b0de-1a4b-0303c59fd40b?request_guid=5c5321c1-0039-40e5-9a86-063a373b36e3 HTTP/1.1" 200 2178 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83841-0502-b0de-1a4b-0303c59fd40b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1c713219-ea22-4475-8351-c3e02cc4b22d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83841-0502-b0de-1a4b-0303c59fd40b?request_guid=1c713219-ea22-4475-8351-c3e02cc4b22d HTTP/1.1" 200 2178 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83841-0502-b0de-1a4b-0303c59fd40b'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: cd31075d-b1c3-42f8-a1c1-a64788031451 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83841-0502-b0de-1a4b-0303c59fd40b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83841-0502-b0de-1a4b-0303c59fd40b'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9baf45df-b08e-45e5-92f6-6b9bf2d8a24a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cd31075d-b1c3-42f8-a1c1-a64788031451&request_guid=9baf45df-b08e-45e5-92f6-6b9bf2d8a24a HTTP/1.1" 200 1786 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83841-0502-b1d6-1a4b-0303c59fbdf7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83841-0502-b1d6-1a4b-0303c59fbdf7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: edc2dc33-e918-41d2-bf09-2995dd2fd0fd +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 95ce88d4-e1d3-4d88-9920-e0d7c79be6de +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=edc2dc33-e918-41d2-bf09-2995dd2fd0fd&request_guid=95ce88d4-e1d3-4d88-9920-e0d7c79be6de HTTP/1.1" 200 2194 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83841-0502-afee-1a4b-0303c59fc813 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83841-0502-afee-1a4b-0303c59fc813 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83841-0502-afee-1a4b-0303c59fc813' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5c152797-c416-4ff2-83c7-400b29a227f9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83841-0502-afee-1a4b-0303c59fc813?request_guid=5c152797-c416-4ff2-83c7-400b29a227f9 HTTP/1.1" 200 1682 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83841-0502-afee-1a4b-0303c59fc813' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: acabd555-7a42-4027-832f-4fa9fa5fd547 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83841-0502-afee-1a4b-0303c59fc813?request_guid=acabd555-7a42-4027-832f-4fa9fa5fd547 HTTP/1.1" 200 1684 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83841-0502-afee-1a4b-0303c59fc813'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 682c0de6-8e3c-4c9b-accd-3ac591b68303 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83841-0502-afee-1a4b-0303c59fc813'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83841-0502-afee-1a4b-0303c59fc813'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0d6f9f91-fc97-4473-8c4f-748b666f8643 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=682c0de6-8e3c-4c9b-accd-3ac591b68303&request_guid=0d6f9f91-fc97-4473-8c4f-748b666f8643 HTTP/1.1" 200 2190 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83841-0502-b0de-1a4b-0303c59fd443 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83841-0502-b0de-1a4b-0303c59fd443 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.6037s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.6108s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.6154s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=d31a4691-d497-4e85-962b-2a5a0785b9f2 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 57804840-d031-4769-bb67-f1746775e3ec +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2377969768272 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2377969768272 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2377970070240 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2377970070240 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2377970070240 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2377970070240 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2377969768272 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2377969768272 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=d31a4691-d497-4e85-962b-2a5a0785b9f2&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=57804840-d031-4769-bb67-f1746775e3ec HTTP/1.1" 200 1556 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=1d1c4b8b-b828-45c7-b315-d93a585ac3e9 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f7cb9318-5e8d-4fee-8419-71fb47a6a1d0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=1d1c4b8b-b828-45c7-b315-d93a585ac3e9&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=f7cb9318-5e8d-4fee-8419-71fb47a6a1d0 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00370s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 0b3ffc5d-5f68-4411-ac12-a6c1e18f9d61 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a7f1614f-f5a0-4df1-bf97-92441a91c4a5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0b3ffc5d-5f68-4411-ac12-a6c1e18f9d61&request_guid=a7f1614f-f5a0-4df1-bf97-92441a91c4a5 HTTP/1.1" 200 2198 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83842-0502-afee-1a4b-0303c5a016a3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83842-0502-afee-1a4b-0303c5a016a3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83842-0502-afee-1a4b-0303c5a016a3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8eeb8783-e6d9-4215-90c3-f86292c1fa3f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83842-0502-afee-1a4b-0303c5a016a3?request_guid=8eeb8783-e6d9-4215-90c3-f86292c1fa3f HTTP/1.1" 200 1867 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83842-0502-afee-1a4b-0303c5a016a3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0201607e-701b-48dc-9da6-79bb830fcaa5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83842-0502-afee-1a4b-0303c5a016a3?request_guid=0201607e-701b-48dc-9da6-79bb830fcaa5 HTTP/1.1" 200 1867 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83842-0502-afee-1a4b-0303c5a016a3'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: ab0ca32b-5c9c-4c87-9e30-deeaa4f9c42d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83842-0502-afee-1a4b-0303c5a016a3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83842-0502-afee-1a4b-0303c5a016a3'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c4fba23c-62a5-49c1-a3b9-1a27bacd10f5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ab0ca32b-5c9c-4c87-9e30-deeaa4f9c42d&request_guid=c4fba23c-62a5-49c1-a3b9-1a27bacd10f5 HTTP/1.1" 200 2197 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83842-0502-af26-1a4b-0303c5a0302f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83842-0502-af26-1a4b-0303c5a0302f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 431e1b3e-0c35-48d8-9673-95b959fdcef8 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ee6d0588-f414-4752-8382-be0a9a10be81 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=431e1b3e-0c35-48d8-9673-95b959fdcef8&request_guid=ee6d0588-f414-4752-8382-be0a9a10be81 HTTP/1.1" 200 1785 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83842-0502-b0de-1a4b-0303c5a0219f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83842-0502-b0de-1a4b-0303c5a0219f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83842-0502-b0de-1a4b-0303c5a0219f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c56f1b53-7e0d-45ce-9c85-e0d7282e95fc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83842-0502-b0de-1a4b-0303c5a0219f?request_guid=c56f1b53-7e0d-45ce-9c85-e0d7282e95fc HTTP/1.1" 200 2180 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83842-0502-b0de-1a4b-0303c5a0219f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d2361ede-a5cc-4f86-bc4e-bbe6dafe220b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83842-0502-b0de-1a4b-0303c5a0219f?request_guid=d2361ede-a5cc-4f86-bc4e-bbe6dafe220b HTTP/1.1" 200 2180 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83842-0502-b0de-1a4b-0303c5a0219f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 7bde2875-604b-4682-822f-c8bee6d11855 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83842-0502-b0de-1a4b-0303c5a0219f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83842-0502-b0de-1a4b-0303c5a0219f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a679e9f4-0394-4e65-ab68-2b11f847c761 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7bde2875-604b-4682-822f-c8bee6d11855&request_guid=a679e9f4-0394-4e65-ab68-2b11f847c761 HTTP/1.1" 200 1786 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83842-0502-afee-1a4b-0303c5a01723 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83842-0502-afee-1a4b-0303c5a01723 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: aa8f7f9e-a4f9-45d7-979d-6c979b540f9d +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3511e733-15a4-40c9-b9dd-02ccd02137d5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=aa8f7f9e-a4f9-45d7-979d-6c979b540f9d&request_guid=3511e733-15a4-40c9-b9dd-02ccd02137d5 HTTP/1.1" 200 2187 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83842-0502-b1d6-1a4b-0303c5a00e07 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83842-0502-b1d6-1a4b-0303c5a00e07 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83842-0502-b1d6-1a4b-0303c5a00e07' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2f342033-ec3d-4576-bbcd-6ac5825802df +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83842-0502-b1d6-1a4b-0303c5a00e07?request_guid=2f342033-ec3d-4576-bbcd-6ac5825802df HTTP/1.1" 200 1674 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83842-0502-b1d6-1a4b-0303c5a00e07' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b3cb178b-571f-4867-96cc-e5e54f36262a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83842-0502-b1d6-1a4b-0303c5a00e07?request_guid=b3cb178b-571f-4867-96cc-e5e54f36262a HTTP/1.1" 200 1674 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83842-0502-b1d6-1a4b-0303c5a00e07'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 20116e3a-c505-46f7-8b69-ec67c13f033a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83842-0502-b1d6-1a4b-0303c5a00e07'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83842-0502-b1d6-1a4b-0303c5a00e07'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8faff492-c0c0-447d-b7b2-0e5a40f03465 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=20116e3a-c505-46f7-8b69-ec67c13f033a&request_guid=8faff492-c0c0-447d-b7b2-0e5a40f03465 HTTP/1.1" 200 2191 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83842-0502-ae87-1a4b-0303c59ffe63 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83842-0502-ae87-1a4b-0303c59ffe63 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.47s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.476s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.48s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=cb30027a-5dc1-4dcf-b2d2-a039f3414297 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 22c69769-7ec6-49ec-8d40-88b3479c4e92 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2417331754736 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2417331754736 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2417332073088 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2417332073088 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2417332073088 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2417332073088 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2417331754736 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2417331754736 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=cb30027a-5dc1-4dcf-b2d2-a039f3414297&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=22c69769-7ec6-49ec-8d40-88b3479c4e92 HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=50220ba6-d8b2-45c1-9571-be29c3612b7e +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cb6feda0-a855-47e6-85a7-a0e979d9c810 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=50220ba6-d8b2-45c1-9571-be29c3612b7e&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=cb6feda0-a855-47e6-85a7-a0e979d9c810 HTTP/1.1" 200 1548 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00422s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: cdebe181-a4e3-4d5d-99df-1b2688f0b32a +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 31417bff-6e1f-41d1-ba6a-4e826cf36646 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cdebe181-a4e3-4d5d-99df-1b2688f0b32a&request_guid=31417bff-6e1f-41d1-ba6a-4e826cf36646 HTTP/1.1" 200 2200 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83847-0502-afee-1a4b-0303c5a19223 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83847-0502-afee-1a4b-0303c5a19223 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83847-0502-afee-1a4b-0303c5a19223' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cc700b80-9f64-4e6a-960c-6635576770cf +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83847-0502-afee-1a4b-0303c5a19223?request_guid=cc700b80-9f64-4e6a-960c-6635576770cf HTTP/1.1" 200 1862 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83847-0502-afee-1a4b-0303c5a19223' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 492124ac-5b8e-4379-b9ee-f4bfe8ea340c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83847-0502-afee-1a4b-0303c5a19223?request_guid=492124ac-5b8e-4379-b9ee-f4bfe8ea340c HTTP/1.1" 200 1864 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83847-0502-afee-1a4b-0303c5a19223'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 6e0974f7-8ee4-4e3a-b33c-d8d218f39ba7 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83847-0502-afee-1a4b-0303c5a19223'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83847-0502-afee-1a4b-0303c5a19223'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5232e00e-9640-475d-9a36-ccf384faf7f8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6e0974f7-8ee4-4e3a-b33c-d8d218f39ba7&request_guid=5232e00e-9640-475d-9a36-ccf384faf7f8 HTTP/1.1" 200 2196 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83847-0502-b1d6-1a4b-0303c5a186df +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83847-0502-b1d6-1a4b-0303c5a186df +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 401741ae-b490-4199-9637-2d67034a5552 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0f4c531a-624d-46d8-bf94-2fa8113f4042 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=401741ae-b490-4199-9637-2d67034a5552&request_guid=0f4c531a-624d-46d8-bf94-2fa8113f4042 HTTP/1.1" 200 1784 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83847-0502-af26-1a4b-0303c5a17733 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83847-0502-af26-1a4b-0303c5a17733 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83847-0502-af26-1a4b-0303c5a17733' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9395379f-dc9f-4e70-b047-70e767596903 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83847-0502-af26-1a4b-0303c5a17733?request_guid=9395379f-dc9f-4e70-b047-70e767596903 HTTP/1.1" 200 2178 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83847-0502-af26-1a4b-0303c5a17733' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a04e5c79-e7ea-48c1-ae30-98a1e4059b15 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83847-0502-af26-1a4b-0303c5a17733?request_guid=a04e5c79-e7ea-48c1-ae30-98a1e4059b15 HTTP/1.1" 200 2178 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83847-0502-af26-1a4b-0303c5a17733'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: a3a8173c-e384-44cc-8afc-d95460262458 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83847-0502-af26-1a4b-0303c5a17733'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83847-0502-af26-1a4b-0303c5a17733'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 81676c52-3414-4ce0-a484-6a495c2848db +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a3a8173c-e384-44cc-8afc-d95460262458&request_guid=81676c52-3414-4ce0-a484-6a495c2848db HTTP/1.1" 200 1786 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83847-0502-ae87-1a4b-0303c5a1a21f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83847-0502-ae87-1a4b-0303c5a1a21f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 191560cb-b41b-46c0-8f26-949514371f8f +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: dfe01e02-5c2a-4571-bcd8-721cf68139a9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=191560cb-b41b-46c0-8f26-949514371f8f&request_guid=dfe01e02-5c2a-4571-bcd8-721cf68139a9 HTTP/1.1" 200 2188 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83847-0502-b1d6-1a4b-0303c5a1871f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83847-0502-b1d6-1a4b-0303c5a1871f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83847-0502-b1d6-1a4b-0303c5a1871f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 01a9c1ba-75d1-4ca5-86ae-3ac9d636f886 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83847-0502-b1d6-1a4b-0303c5a1871f?request_guid=01a9c1ba-75d1-4ca5-86ae-3ac9d636f886 HTTP/1.1" 200 1682 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83847-0502-b1d6-1a4b-0303c5a1871f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 87027d82-8030-4215-8a43-65cb0eb36f44 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83847-0502-b1d6-1a4b-0303c5a1871f?request_guid=87027d82-8030-4215-8a43-65cb0eb36f44 HTTP/1.1" 200 1683 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83847-0502-b1d6-1a4b-0303c5a1871f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: ed10ec43-29ab-43b9-b35d-edc415ee43a7 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83847-0502-b1d6-1a4b-0303c5a1871f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83847-0502-b1d6-1a4b-0303c5a1871f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1c064686-ba7d-4ee1-83af-06c03b0ed202 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ed10ec43-29ab-43b9-b35d-edc415ee43a7&request_guid=1c064686-ba7d-4ee1-83af-06c03b0ed202 HTTP/1.1" 200 2193 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83847-0502-ae87-1a4b-0303c5a1a237 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83847-0502-ae87-1a4b-0303c5a1a237 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 17.47s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=ce543853-82e7-4a61-bba8-b92a79c60675 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 402dbf15-f576-4dbd-bef9-c1401de75b82 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=ce543853-82e7-4a61-bba8-b92a79c60675&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=402dbf15-f576-4dbd-bef9-c1401de75b82 HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 3bef3d6e-b543-46f6-8cd5-352ccdbe6628 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0c7647b1-630e-426e-9f12-f3877a0b40df +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3bef3d6e-b543-46f6-8cd5-352ccdbe6628&request_guid=0c7647b1-630e-426e-9f12-f3877a0b40df HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83847-0502-b0de-1a4b-0303c5a16d87 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83847-0502-b0de-1a4b-0303c5a16d87 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 332 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83847-0502-b0de-1a4b-0303c5a16d87' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4f01ee38-cbbb-4214-91ce-57ea0d974d45 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83847-0502-b0de-1a4b-0303c5a16d87?request_guid=4f01ee38-cbbb-4214-91ce-57ea0d974d45 HTTP/1.1" 200 2090 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83847-0502-b0de-1a4b-0303c5a16d87' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7cf49bea-da0c-4589-9488-c15a03ccb364 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83847-0502-b0de-1a4b-0303c5a16d87?request_guid=7cf49bea-da0c-4589-9488-c15a03ccb364 HTTP/1.1" 200 2089 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83847-0502-b0de-1a4b-0303c5a16d87'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: d0f14814-1995-48f5-a4c5-09f22021f388 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83847-0502-b0de-1a4b-0303c5a16d87'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83847-0502-b0de-1a4b-0303c5a16d87'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f329bfc7-8e47-43f1-a4c0-6709cdadc781 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d0f14814-1995-48f5-a4c5-09f22021f388&request_guid=f329bfc7-8e47-43f1-a4c0-6709cdadc781 HTTP/1.1" 200 2307 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83847-0502-af26-1a4b-0303c5a17c3f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83847-0502-af26-1a4b-0303c5a17c3f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=5 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83847-0502-b0de-1a4b-0303c5a16d87_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121912&Signature=GrPm%2Fo8HqgqE7rRHZDsUXMDRoKg%3D HTTP/1.1" 200 23925 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83847-0502-b0de-1a4b-0303c5a16d87_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121912&Signature=tUsUqNVyuihOhkUNtw31WSIazPc%3D HTTP/1.1" 200 240144 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83847-0502-b0de-1a4b-0303c5a16d87_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121912&Signature=pdGTKHoS3zoO6Xi5T43tzsIxkzM%3D HTTP/1.1" 200 133524 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 332 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 340 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83847-0502-b0de-1a4b-0303c5a16d87_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121912&Signature=kfGSSGTQk2bPXqKyBSseYXLmwb8%3D HTTP/1.1" 200 250117 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 341 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 683 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 2 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83847-0502-b0de-1a4b-0303c5a16d87_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668121912&Signature=Q9h4czpZZTrKvtoBZ4d3M9A%2BoTQ%3D HTTP/1.1" 200 479262 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1366 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1368 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1367 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 2, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2734 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1099 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 21.95s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 21.96s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 21.96s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=2db3e946-1c9e-4e9c-956b-9489d180d3a2 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c1d20305-e10d-495b-a8f3-5904ae9a3782 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2346068809408 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2346068809408 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2346069127760 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2346069127760 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2346069127760 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2346069127760 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2346068809408 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2346068809408 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=2db3e946-1c9e-4e9c-956b-9489d180d3a2&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=c1d20305-e10d-495b-a8f3-5904ae9a3782 HTTP/1.1" 200 1556 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=42273319-c752-4d42-99f3-90b4c31bdf46 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2648737e-f7c4-46b2-aec4-18b7e383da93 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=42273319-c752-4d42-99f3-90b4c31bdf46&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=2648737e-f7c4-46b2-aec4-18b7e383da93 HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00178s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 19e8b375-f522-496c-80d1-5291b2fe668c +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a49784e3-f7af-4576-9e74-75f4e21861df +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=19e8b375-f522-496c-80d1-5291b2fe668c&request_guid=a49784e3-f7af-4576-9e74-75f4e21861df HTTP/1.1" 200 2196 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8384c-0502-b0de-1a4b-0303c5a2ae37 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8384c-0502-b0de-1a4b-0303c5a2ae37 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8384c-0502-b0de-1a4b-0303c5a2ae37' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0278eea8-7343-401a-91b4-dc8aa9eca975 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8384c-0502-b0de-1a4b-0303c5a2ae37?request_guid=0278eea8-7343-401a-91b4-dc8aa9eca975 HTTP/1.1" 200 1860 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8384c-0502-b0de-1a4b-0303c5a2ae37' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4d469476-4291-4c31-adb0-0e6060695362 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8384c-0502-b0de-1a4b-0303c5a2ae37?request_guid=4d469476-4291-4c31-adb0-0e6060695362 HTTP/1.1" 200 1859 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8384c-0502-b0de-1a4b-0303c5a2ae37'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 06094d86-847e-4d57-b616-b6e82ea1ab3e +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8384c-0502-b0de-1a4b-0303c5a2ae37'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8384c-0502-b0de-1a4b-0303c5a2ae37'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d3478363-f0f0-4b64-a9d3-f06ba77b854f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=06094d86-847e-4d57-b616-b6e82ea1ab3e&request_guid=d3478363-f0f0-4b64-a9d3-f06ba77b854f HTTP/1.1" 200 2198 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8384c-0502-af26-1a4b-0303c5a2be53 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8384c-0502-af26-1a4b-0303c5a2be53 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 32 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 8 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: acde0a7a-b947-4935-8b67-02a2e5c40ba3 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_TRAN...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_TRAN...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c141a7da-e950-4d2d-b316-c7ed368451a2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=acde0a7a-b947-4935-8b67-02a2e5c40ba3&request_guid=c141a7da-e950-4d2d-b316-c7ed368451a2 HTTP/1.1" 200 1785 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8384c-0502-af26-1a4b-0303c5a2be63 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8384c-0502-af26-1a4b-0303c5a2be63 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8384c-0502-af26-1a4b-0303c5a2be63' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c351b420-2677-4a2f-97d1-b5da04a22d78 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8384c-0502-af26-1a4b-0303c5a2be63?request_guid=c351b420-2677-4a2f-97d1-b5da04a22d78 HTTP/1.1" 200 2181 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8384c-0502-af26-1a4b-0303c5a2be63' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a731e24c-4bb3-44c8-9d00-b0251d043043 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8384c-0502-af26-1a4b-0303c5a2be63?request_guid=a731e24c-4bb3-44c8-9d00-b0251d043043 HTTP/1.1" 200 2181 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8384c-0502-af26-1a4b-0303c5a2be63'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 73cda248-80b2-494d-aacf-977884a35489 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8384c-0502-af26-1a4b-0303c5a2be63'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8384c-0502-af26-1a4b-0303c5a2be63'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 551f1245-a3ac-47b9-8bb9-b3b97e7a9d08 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=73cda248-80b2-494d-aacf-977884a35489&request_guid=551f1245-a3ac-47b9-8bb9-b3b97e7a9d08 HTTP/1.1" 200 1786 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8384c-0502-af26-1a4b-0303c5a2be9f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8384c-0502-af26-1a4b-0303c5a2be9f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 12 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 247ca387-667d-44c1-b20e-a05313a1203b +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','VPPERFORMANCE');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','VPPERFORMANCE');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fe6e4d57-d651-4a13-ae37-8a6139d4ceca +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=247ca387-667d-44c1-b20e-a05313a1203b&request_guid=fe6e4d57-d651-4a13-ae37-8a6139d4ceca HTTP/1.1" 200 2193 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8384c-0502-ae87-1a4b-0303c5a2d897 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8384c-0502-ae87-1a4b-0303c5a2d897 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8384c-0502-ae87-1a4b-0303c5a2d897' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 894ff819-b497-4de8-8a51-fc0d3342e6ed +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8384c-0502-ae87-1a4b-0303c5a2d897?request_guid=894ff819-b497-4de8-8a51-fc0d3342e6ed HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8384c-0502-ae87-1a4b-0303c5a2d897' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 05c5e66d-6ecc-4a9e-b657-b99e2bb838e4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8384c-0502-ae87-1a4b-0303c5a2d897?request_guid=05c5e66d-6ecc-4a9e-b657-b99e2bb838e4 HTTP/1.1" 200 1679 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8384c-0502-ae87-1a4b-0303c5a2d897'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 098415f9-a663-457a-b774-45348819fa8c +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8384c-0502-ae87-1a4b-0303c5a2d897'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8384c-0502-ae87-1a4b-0303c5a2d897'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: adae9fc2-b35f-4107-b24e-19d739b1c87e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=098415f9-a663-457a-b774-45348819fa8c&request_guid=adae9fc2-b35f-4107-b24e-19d739b1c87e HTTP/1.1" 200 2189 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8384c-0502-b1d6-1a4b-0303c5a2cc93 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8384c-0502-b1d6-1a4b-0303c5a2cc93 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 3.53s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_QA, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=8419cee1-8ba4-442a-b378-38f66a7d2f04 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: aa14588f-f3fb-4afa-9e3e-637d98ebfd79 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=8419cee1-8ba4-442a-b378-38f66a7d2f04&databaseName=PL_QA&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=aa14588f-f3fb-4afa-9e3e-637d98ebfd79 HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: edd1634f-3a6f-466c-8e0c-0a6330a70ac0 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6915f7e2-ab73-40b9-b896-33444883e4c3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=edd1634f-3a6f-466c-8e0c-0a6330a70ac0&request_guid=6915f7e2-ab73-40b9-b896-33444883e4c3 HTTP/1.1" 200 2309 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8384c-0502-af26-1a4b-0303c5a2bf0b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8384c-0502-af26-1a4b-0303c5a2bf0b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=5 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8384c-0502-af26-1a4b-0303c5a2bf0b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: efc5b88a-ba12-453b-bac4-e68ffd5ae62f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8384c-0502-af26-1a4b-0303c5a2bf0b?request_guid=efc5b88a-ba12-453b-bac4-e68ffd5ae62f HTTP/1.1" 200 1945 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8384c-0502-af26-1a4b-0303c5a2bf0b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6b1ed2f5-c8de-4e3b-8209-48e26d198456 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8384c-0502-af26-1a4b-0303c5a2bf0b?request_guid=6b1ed2f5-c8de-4e3b-8209-48e26d198456 HTTP/1.1" 200 1945 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8384c-0502-af26-1a4b-0303c5a2bf0b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: df1a573a-d299-4176-b88d-7e0b356ce5e9 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8384c-0502-af26-1a4b-0303c5a2bf0b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8384c-0502-af26-1a4b-0303c5a2bf0b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7741ef9a-4e7f-4f08-8d79-07c691a08de5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=df1a573a-d299-4176-b88d-7e0b356ce5e9&request_guid=7741ef9a-4e7f-4f08-8d79-07c691a08de5 HTTP/1.1" 200 2309 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8384c-0502-af26-1a4b-0303c5a2bf23 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8384c-0502-af26-1a4b-0303c5a2bf23 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=5 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83847-0502-b0de-1a4b-0303c5a16d87_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668122187&Signature=VEZQUyr3RVSTDaeixY3xInEtqM0%3D HTTP/1.1" 200 23925 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83847-0502-b0de-1a4b-0303c5a16d87_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668122187&Signature=mIqjp290FVnjdOauRwPxupAANRo%3D HTTP/1.1" 200 133524 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83847-0502-b0de-1a4b-0303c5a16d87_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668122187&Signature=bnjmpIfeXFEwqfEwenand9SaC%2FY%3D HTTP/1.1" 200 479262 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 332 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83847-0502-b0de-1a4b-0303c5a16d87_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668122187&Signature=2DkmcpWAxBmOPhDHiUoCB0OkgNo%3D HTTP/1.1" 200 240144 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 340 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 341 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83847-0502-b0de-1a4b-0303c5a16d87_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668122187&Signature=t6fv5nYPK4VDqmO9dSCMzpaFkas%3D HTTP/1.1" 200 250117 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 342 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 683 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 684 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1366 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1368 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1367 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 2 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 2, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2734 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1099 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D, database=PL_DEV, schema=PM_TRANS_CL_EPALARM_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=8804d7a0-1bfa-42fa-8ab9-d2b183e4ba14 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d2de138c-40db-498c-a254-109f1c52c901 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=8804d7a0-1bfa-42fa-8ab9-d2b183e4ba14&databaseName=PL_DEV&schemaName=PM_TRANS_CL_EPALARM_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=d2de138c-40db-498c-a254-109f1c52c901 HTTP/1.1" 200 1558 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 0c8d19fe-4adf-49e1-8329-d61468daedf3 +DEBUG:snowflake.connector.cursor:running query [SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT COMPONENTID,ODS_EFF_ROW_DTM,ODS_ROW_PROCESS_DTM,"header_change_seq","head...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: abe88b38-719e-4410-a318-6fb1d87d38fe +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0c8d19fe-4adf-49e1-8329-d61468daedf3&request_guid=abe88b38-719e-4410-a318-6fb1d87d38fe HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8385d-0502-b0de-1a4b-0303c5a7ea4f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8385d-0502-b0de-1a4b-0303c5a7ea4f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 346 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8385d-0502-b0de-1a4b-0303c5a7ea4f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 77e1e36d-26a8-4b53-9421-5b66afeb708f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8385d-0502-b0de-1a4b-0303c5a7ea4f?request_guid=77e1e36d-26a8-4b53-9421-5b66afeb708f HTTP/1.1" 200 2092 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8385d-0502-b0de-1a4b-0303c5a7ea4f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a762cd20-21a5-4484-a62a-9526e881ca66 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8385d-0502-b0de-1a4b-0303c5a7ea4f?request_guid=a762cd20-21a5-4484-a62a-9526e881ca66 HTTP/1.1" 200 2092 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8385d-0502-b0de-1a4b-0303c5a7ea4f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 3d6ae4d9-f55d-44aa-85ab-93304bd24488 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8385d-0502-b0de-1a4b-0303c5a7ea4f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8385d-0502-b0de-1a4b-0303c5a7ea4f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c319ea0e-aebb-42ee-816f-6fe463f0132d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3d6ae4d9-f55d-44aa-85ab-93304bd24488&request_guid=c319ea0e-aebb-42ee-816f-6fe463f0132d HTTP/1.1" 200 2265 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8385d-0502-ae87-1a4b-0303c5a7f9eb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8385d-0502-ae87-1a4b-0303c5a7f9eb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=4 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8385d-0502-b0de-1a4b-0303c5a7ea4f_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123212&Signature=%2BfPhfDNmOxFWxXqi4ZWouShV1ak%3D HTTP/1.1" 200 110468 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8385d-0502-b0de-1a4b-0303c5a7ea4f_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123212&Signature=CEi1gZgjdAkZ8s4snI914jsRwAs%3D HTTP/1.1" 200 23658 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8385d-0502-b0de-1a4b-0303c5a7ea4f_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123212&Signature=5v4ChoKwdKbFE3dNL4Jn0f0d2mI%3D HTTP/1.1" 200 264890 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a8385d-0502-b0de-1a4b-0303c5a7ea4f_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123212&Signature=Fkolf3PlnIf6DBbp2IrFyvHFQyw%3D HTTP/1.1" 200 164577 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 346 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 350 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 350 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 349 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 350 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 350 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 9 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 9 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 9, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 350 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 350 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 350 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 350 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 350 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 350 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 713 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 716 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 716 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 32, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 716 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 716 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 716 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 500 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.telemetry:Sending 1 logs to telemetry. Data is {'logs': [{'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_imported_packages', 'value': "{'linecache', 'function', 'code', 'atexit', 'sql', 'pyexpat', 'gc', 'ntpath', 'typing', 'json', 'pydevd_tracing', 'token', 'uu', 'pydoc', 'common', 'builtins', 'marshal', 'tokenize', 'configparser', 'itertools', 'opcode', 'pydevd_plugins', 'asyncio', 'webbrowser', 'textwrap', 'hmac', 'calendar', 'datetime', 'platform', 'pkgutil', 'importlib', 'inspect', 'bz2', 'pkg_resources', 'nturl2path', 'sre_constants', 'timeit', 'gzip', 'debugpy', 'pathlib', 'math', 'sre_parse', 'quopri', 'fnmatch', 'codecs', 'contextvars', 'msvcrt', 'imp', 'greenlet', 'snowflake', 'errno', 'socketserver', 'secrets', 'sys', 'flask', 'dateutil', 'xml', 'collections', 'oscrypto', 'reprlib', 'nt', 'binascii', 'sre_compile', 'sysconfig', 'socket', 'subprocess', 'jwt', 'site', 'winreg', 'flask_sqlalchemy', 'operator', 'warnings', 'itsdangerous', 'dis', 'charset_normalizer', 'pydevd', 'pycparser', 'ctypes', 'six', 'psycopg2', 'os', 'zipimport', 'numpy', 'ssl', 'xmlrpc', 'pickle', 'concurrent', 'asn1crypto', 'decimal', 're', 'cython_runtime', 'select', 'csv', 'cryptography', 'traceback', 'threading', 'time', 'colorama', 'shlex', 'heapq', 'types', 'gettext', 'wtforms', 'overrides', 'struct', 'posixpath', 'getpass', 'http', 'mimetypes', 'dataclasses', 'requests', 'email', 'pydevconsole', 'idna', 'lzma', 'selectors', 'shutil', 'pytz', 'codeop', 'encodings', 'stat', 'tempfile', 'config', 'flask_wtf', 'enum', 'keyword', 'copyreg', 'zipfile', 'locale', 'functools', 'urllib', 'abc', 'pydevd_file_utils', 'plistlib', 'click', 'html', 'genericpath', 'logging', 'urllib3', 'numbers', 'copy', 'ast', 'difflib', 'mako', 'werkzeug', 'zlib', 'argparse', 'pydev_ipython', 'alembic', 'sqlalchemy', 'glob', 'ipaddress', 'hashlib', 'pprint', 'stringprep', 'signal', 'flask_migrate', 'random', 'weakref', 'flask_session', 'mmap', 'uuid', 'queue', 'pandas', 'cachelib', 'unicodedata', 'contextlib', 'OpenSSL', 'filelock', 'Cryptodome', 'jinja2', 'cmath', 'certifi', 'sqlite3', 'fconfig', 'fractions', 'markupsafe', 'typing_extensions', 'string', 'bisect', 'cffi', 'io', 'base64'}"}, 'timestamp': '1668100580193'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8384c-0502-b0de-1a4b-0303c5a2ae37', 'value': -589}, 'timestamp': '1668100583066'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8384c-0502-af26-1a4b-0303c5a2be53', 'value': -590}, 'timestamp': '1668100583449'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a8384c-0502-af26-1a4b-0303c5a2be53', 'value': 5}, 'timestamp': '1668100583454'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8384c-0502-af26-1a4b-0303c5a2be63', 'value': -590}, 'timestamp': '1668100584367'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8384c-0502-af26-1a4b-0303c5a2be9f', 'value': -589}, 'timestamp': '1668100584667'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a8384c-0502-af26-1a4b-0303c5a2be9f', 'value': 4}, 'timestamp': '1668100584671'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8384c-0502-ae87-1a4b-0303c5a2d897', 'value': -590}, 'timestamp': '1668100584762'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8384c-0502-b1d6-1a4b-0303c5a2cc93', 'value': -589}, 'timestamp': '1668100585155'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a8384c-0502-b1d6-1a4b-0303c5a2cc93', 'value': 2}, 'timestamp': '1668100585157'}]}. +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4af7db06-2b64-4cc2-87b4-878b2d2174e1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /telemetry/send?request_guid=4af7db06-2b64-4cc2-87b4-878b2d2174e1 HTTP/1.1" 200 86 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.telemetry:Successfully uploading metrics to telemetry. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f2336aeb-640c-481c-9476-49b4fd786913 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=f2336aeb-640c-481c-9476-49b4fd786913 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.telemetry:Sending 1 logs to telemetry. Data is {'logs': [{'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_imported_packages', 'value': "{'linecache', 'function', 'code', 'atexit', 'sql', 'pyexpat', 'gc', 'ntpath', 'typing', 'json', 'pydevd_tracing', 'token', 'uu', 'pydoc', 'common', 'builtins', 'marshal', 'tokenize', 'configparser', 'itertools', 'opcode', 'pydevd_plugins', 'asyncio', 'webbrowser', 'textwrap', 'hmac', 'calendar', 'datetime', 'platform', 'pkgutil', 'importlib', 'inspect', 'bz2', 'pkg_resources', 'nturl2path', 'sre_constants', 'timeit', 'gzip', 'debugpy', 'pathlib', 'math', 'sre_parse', 'quopri', 'fnmatch', 'codecs', 'contextvars', 'msvcrt', 'imp', 'greenlet', 'snowflake', 'errno', 'socketserver', 'secrets', 'sys', 'flask', 'dateutil', 'xml', 'collections', 'oscrypto', 'reprlib', 'nt', 'binascii', 'sre_compile', 'sysconfig', 'socket', 'subprocess', 'jwt', 'site', 'winreg', 'flask_sqlalchemy', 'operator', 'warnings', 'itsdangerous', 'dis', 'charset_normalizer', 'pydevd', 'pycparser', 'ctypes', 'six', 'psycopg2', 'os', 'zipimport', 'numpy', 'ssl', 'xmlrpc', 'pickle', 'concurrent', 'asn1crypto', 'decimal', 're', 'cython_runtime', 'select', 'csv', 'cryptography', 'traceback', 'threading', 'time', 'colorama', 'shlex', 'heapq', 'types', 'gettext', 'wtforms', 'overrides', 'struct', 'posixpath', 'getpass', 'http', 'mimetypes', 'dataclasses', 'requests', 'email', 'pydevconsole', 'idna', 'lzma', 'selectors', 'shutil', 'pytz', 'codeop', 'encodings', 'stat', 'tempfile', 'config', 'flask_wtf', 'enum', 'keyword', 'copyreg', 'zipfile', 'locale', 'functools', 'urllib', 'abc', 'pydevd_file_utils', 'plistlib', 'click', 'html', 'genericpath', 'logging', 'urllib3', 'numbers', 'copy', 'ast', 'difflib', 'mako', 'werkzeug', 'zlib', 'argparse', 'pydev_ipython', 'alembic', 'sqlalchemy', 'glob', 'ipaddress', 'hashlib', 'pprint', 'stringprep', 'signal', 'flask_migrate', 'random', 'weakref', 'flask_session', 'mmap', 'uuid', 'queue', 'pandas', 'cachelib', 'unicodedata', 'contextlib', 'OpenSSL', 'filelock', 'Cryptodome', 'jinja2', 'cmath', 'certifi', 'sqlite3', 'fconfig', 'fractions', 'markupsafe', 'typing_extensions', 'string', 'bisect', 'cffi', 'io', 'base64'}"}, 'timestamp': '1668100581703'}]}. +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e24599d0-41bd-4cc6-9869-84a56801e82c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /telemetry/send?request_guid=e24599d0-41bd-4cc6-9869-84a56801e82c HTTP/1.1" 200 86 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.telemetry:Successfully uploading metrics to telemetry. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9755a8d4-81e8-466c-b840-e41aa6a3d1ca +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=9755a8d4-81e8-466c-b840-e41aa6a3d1ca HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:33:39] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y2zsqw.w-0srIACU8oy-6BhivJFjSqn06M&submit=Submit HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:33:40] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:33:40] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:33:40] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:33:40] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:33:40] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:33:40] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:33:40] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:33:41] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:33:41] "GET /js/main.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:33:41] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:34:56] "GET /daterange HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:34:56] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:34:56] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:34:56] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:34:56] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:34:56] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:34:56] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:34:56] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:34:57] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:34:57] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:34:57] "GET /js/main.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:34:57] "GET /favicon.ico HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT targets.id AS targets_id, targets.targetname AS targets_targetname, targets.username AS targets_username, targets.password AS targets_password, targets.account AS targets_account, targets.warehouse AS targets_warehouse, targets."database" AS targets_database, targets.schemaname AS targets_schemaname +FROM targets +INFO:sqlalchemy.engine.Engine:[cached since 1152s ago] () +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:35:08] "POST /schemas HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:35:08] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:35:09] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:35:09] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:35:09] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:35:09] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:35:09] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:35:09] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:35:09] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:35:09] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:35:09] "GET /js/main.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT targets.id AS targets_id, targets.targetname AS targets_targetname, targets.username AS targets_username, targets.password AS targets_password, targets.account AS targets_account, targets.warehouse AS targets_warehouse, targets."database" AS targets_database, targets.schemaname AS targets_schemaname +FROM targets +WHERE targets."database" = ? AND targets.schemaname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00207s] ('PL_DEV', 'PM_EDW_TRANS_QLIK_CT_D', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT targets.id AS targets_id, targets.targetname AS targets_targetname, targets.username AS targets_username, targets.password AS targets_password, targets.account AS targets_account, targets.warehouse AS targets_warehouse, targets."database" AS targets_database, targets.schemaname AS targets_schemaname +FROM targets +WHERE targets."database" = ? AND targets.schemaname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.01426s ago] ('PL_QA', 'PM_EDW_TRANS_QLIK_CT_D', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 1217s ago] ('get_tablelist', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=20e4cfbf-04bb-43d8-aac3-bee4374a6556 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f8e46a6d-e782-4e1a-9761-d9f846028eb9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=20e4cfbf-04bb-43d8-aac3-bee4374a6556&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=f8e46a6d-e782-4e1a-9761-d9f846028eb9 HTTP/1.1" 200 1546 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select distinct(table_name) from information_schema.columns where table_schema =...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 61f9e60b-6ba7-446b-819a-0c8278ed518c +DEBUG:snowflake.connector.cursor:running query [select distinct(table_name) from information_schema.columns where table_schema =...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select distinct(table_name) from information_schema.columns where table_schema =...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 46880a9e-0f9b-4fcc-be27-ee1f54706627 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=61f9e60b-6ba7-446b-819a-0c8278ed518c&request_guid=46880a9e-0f9b-4fcc-be27-ee1f54706627 HTTP/1.1" 200 6202 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83860-0502-b0de-1a4b-0303c5a8d44b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83860-0502-b0de-1a4b-0303c5a8d44b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 654 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83860-0502-b0de-1a4b-0303c5a8d44b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 14d1de34-d1e3-457e-9a07-56f4156c2293 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83860-0502-b0de-1a4b-0303c5a8d44b?request_guid=14d1de34-d1e3-457e-9a07-56f4156c2293 HTTP/1.1" 200 1874 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83860-0502-b0de-1a4b-0303c5a8d44b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d0eefd83-6725-4268-8493-88bc9d995855 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83860-0502-b0de-1a4b-0303c5a8d44b?request_guid=d0eefd83-6725-4268-8493-88bc9d995855 HTTP/1.1" 200 1875 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83860-0502-b0de-1a4b-0303c5a8d44b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 473e743c-d755-4f80-8a28-8d9f269f9145 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83860-0502-b0de-1a4b-0303c5a8d44b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83860-0502-b0de-1a4b-0303c5a8d44b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8a6516fe-67a5-4fd7-b556-d9228626b28e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=473e743c-d755-4f80-8a28-8d9f269f9145&request_guid=8a6516fe-67a5-4fd7-b556-d9228626b28e HTTP/1.1" 200 6201 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83860-0502-b1d6-1a4b-0303c5a8e1e3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83860-0502-b1d6-1a4b-0303c5a8e1e3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 654 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 81 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 82 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 82 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 82 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 81 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 82 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 82 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 82 +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:44] "POST /tables HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:44] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:44] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:44] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:44] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:44] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:44] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:44] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:44] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:44] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:44] "GET /js/main.js HTTP/1.1" 404 - +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c7751123-f66b-4149-a209-1ba0466d9928 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=c7751123-f66b-4149-a209-1ba0466d9928 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:56] "POST /submit HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:56] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:56] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:56] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:56] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:56] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:56] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:56] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:56] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:57] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:36:57] "GET /js/main.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 1263s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 1263s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 1263s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=d85bee1f-603d-4b86-af98-0367c7e5b9dc +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4fb788ad-346a-4763-bee6-772589cc1b71 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=d85bee1f-603d-4b86-af98-0367c7e5b9dc&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=4fb788ad-346a-4763-bee6-772589cc1b71 HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=81203769-208e-4f29-992d-7b04507a3293 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8562a2b9-9d73-44ce-bd6b-7309937c049c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=81203769-208e-4f29-992d-7b04507a3293&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=8562a2b9-9d73-44ce-bd6b-7309937c049c HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 1242s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 3cd722ee-765b-4773-8048-f393c63f9d08 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2981937c-3a15-428b-8a45-9a13346a4770 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3cd722ee-765b-4773-8048-f393c63f9d08&request_guid=2981937c-3a15-428b-8a45-9a13346a4770 HTTP/1.1" 200 4229 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83861-0502-b0de-1a4b-0303c5a8d913 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83861-0502-b0de-1a4b-0303c5a8d913 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 187 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83861-0502-b0de-1a4b-0303c5a8d913' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4a26d291-ab90-4524-94f3-6e0029f8a43b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83861-0502-b0de-1a4b-0303c5a8d913?request_guid=4a26d291-ab90-4524-94f3-6e0029f8a43b HTTP/1.1" 200 1852 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83861-0502-b0de-1a4b-0303c5a8d913' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 626edc86-1705-4e9d-8df4-d5370259c538 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83861-0502-b0de-1a4b-0303c5a8d913?request_guid=626edc86-1705-4e9d-8df4-d5370259c538 HTTP/1.1" 200 1852 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83861-0502-b0de-1a4b-0303c5a8d913'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: f5a41f61-5852-442d-9bb1-9160c6da4ad7 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83861-0502-b0de-1a4b-0303c5a8d913'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83861-0502-b0de-1a4b-0303c5a8d913'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4344fb3a-a3a3-4033-847c-fa6e2754c2a9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f5a41f61-5852-442d-9bb1-9160c6da4ad7&request_guid=4344fb3a-a3a3-4033-847c-fa6e2754c2a9 HTTP/1.1" 200 4230 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83861-0502-b0de-1a4b-0303c5a8d997 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83861-0502-b0de-1a4b-0303c5a8d997 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 187 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 29 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 22 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 17 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 33 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 27 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 22 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 17 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 20 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 5af903e2-0113-4b10-afb6-63aa02bbdea0 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e18a8f05-a359-4f58-853d-511734126035 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5af903e2-0113-4b10-afb6-63aa02bbdea0&request_guid=e18a8f05-a359-4f58-853d-511734126035 HTTP/1.1" 200 3928 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83861-0502-b0de-1a4b-0303c5a8d9a7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83861-0502-b0de-1a4b-0303c5a8d9a7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 158 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83861-0502-b0de-1a4b-0303c5a8d9a7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e5319b77-bd0f-4d3a-91d5-bf8abb977c31 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83861-0502-b0de-1a4b-0303c5a8d9a7?request_guid=e5319b77-bd0f-4d3a-91d5-bf8abb977c31 HTTP/1.1" 200 2170 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83861-0502-b0de-1a4b-0303c5a8d9a7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 67ac974d-f650-4103-a5b2-6237c3ee62cd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83861-0502-b0de-1a4b-0303c5a8d9a7?request_guid=67ac974d-f650-4103-a5b2-6237c3ee62cd HTTP/1.1" 200 2170 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83861-0502-b0de-1a4b-0303c5a8d9a7'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 82c167e3-97f2-4000-878e-70c7480cf67d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83861-0502-b0de-1a4b-0303c5a8d9a7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83861-0502-b0de-1a4b-0303c5a8d9a7'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ec14c9b6-d9c2-4184-a34f-a4b67a9192ac +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=82c167e3-97f2-4000-878e-70c7480cf67d&request_guid=ec14c9b6-d9c2-4184-a34f-a4b67a9192ac HTTP/1.1" 200 3929 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83861-0502-b1d6-1a4b-0303c5a8e533 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83861-0502-b1d6-1a4b-0303c5a8e533 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 158 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 25 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 20 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 28 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 21 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 19 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 13 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 18 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_VKX0500T');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 4b0ced5f-6267-4b8f-8371-241706c87529 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_VKX0500T');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_VKX0500T');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e89d4250-55c8-49a6-a756-630c0ae97704 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4b0ced5f-6267-4b8f-8371-241706c87529&request_guid=e89d4250-55c8-49a6-a756-630c0ae97704 HTTP/1.1" 200 4486 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83861-0502-ae87-1a4b-0303c5a9061b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83861-0502-ae87-1a4b-0303c5a9061b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83861-0502-ae87-1a4b-0303c5a9061b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2d287089-0d61-4ef3-95c0-0349dd96cc48 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83861-0502-ae87-1a4b-0303c5a9061b?request_guid=2d287089-0d61-4ef3-95c0-0349dd96cc48 HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83861-0502-ae87-1a4b-0303c5a9061b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3556e6af-e415-48dd-896a-43f89b097567 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83861-0502-ae87-1a4b-0303c5a9061b?request_guid=3556e6af-e415-48dd-896a-43f89b097567 HTTP/1.1" 200 1682 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83861-0502-ae87-1a4b-0303c5a9061b'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: d6dc8303-a947-40b9-9224-b4702e760f5e +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83861-0502-ae87-1a4b-0303c5a9061b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83861-0502-ae87-1a4b-0303c5a9061b'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5c6ddd94-db53-4fb1-85a1-cb428492bc47 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d6dc8303-a947-40b9-9224-b4702e760f5e&request_guid=5c6ddd94-db53-4fb1-85a1-cb428492bc47 HTTP/1.1" 200 4482 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83861-0502-b0de-1a4b-0303c5a8d9f3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83861-0502-b0de-1a4b-0303c5a8d9f3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 1245s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=9c2f2c53-ccf8-49fb-96a1-fc0040b3c99c +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5fde6acb-8f92-49ac-8a7f-9d60dc01d3d9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=9c2f2c53-ccf8-49fb-96a1-fc0040b3c99c&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=5fde6acb-8f92-49ac-8a7f-9d60dc01d3d9 HTTP/1.1" 200 1548 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT AFFINITY_INDICATOR,AGR_AUN,ANT_DSL_I,BKR_IFO_ID,CON_EDR_NB,LAST_MODIFIED_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 2fe25112-c9d6-4556-bd23-b14ed6c722d1 +DEBUG:snowflake.connector.cursor:running query [SELECT AFFINITY_INDICATOR,AGR_AUN,ANT_DSL_I,BKR_IFO_ID,CON_EDR_NB,LAST_MODIFIED_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT AFFINITY_INDICATOR,AGR_AUN,ANT_DSL_I,BKR_IFO_ID,CON_EDR_NB,LAST_MODIFIED_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cf81de8c-40a8-42ea-8e3d-927523295db2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2fe25112-c9d6-4556-bd23-b14ed6c722d1&request_guid=cf81de8c-40a8-42ea-8e3d-927523295db2 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83861-0502-af26-1a4b-0303c5a8f6ff +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83861-0502-af26-1a4b-0303c5a8f6ff +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=62 +INFO:snowflake.connector.cursor:Number of results in first chunk: 143 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83861-0502-af26-1a4b-0303c5a8f6ff' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0efc3f9d-f806-4b1e-b86e-a1c3a062e56a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83861-0502-af26-1a4b-0303c5a8f6ff?request_guid=0efc3f9d-f806-4b1e-b86e-a1c3a062e56a HTTP/1.1" 200 3368 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83861-0502-af26-1a4b-0303c5a8f6ff' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3be313de-df5a-4f0c-b76a-ce7337fef29a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83861-0502-af26-1a4b-0303c5a8f6ff?request_guid=3be313de-df5a-4f0c-b76a-ce7337fef29a HTTP/1.1" 200 3368 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83861-0502-af26-1a4b-0303c5a8f6ff'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: c07667e3-c640-4d0b-aec6-46fecb0e1627 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83861-0502-af26-1a4b-0303c5a8f6ff'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83861-0502-af26-1a4b-0303c5a8f6ff'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: efe27c6d-bfce-447e-889c-38c5243d1243 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c07667e3-c640-4d0b-aec6-46fecb0e1627&request_guid=efe27c6d-bfce-447e-889c-38c5243d1243 HTTP/1.1" 200 7475 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83861-0502-ae87-1a4b-0303c5a90817 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83861-0502-ae87-1a4b-0303c5a90817 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=63 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_0_7 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_2_3 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_2_4 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_2_5 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_2_6 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_2_7 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_3_0 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_3_4 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_3_5 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_3_6 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_3_7 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_4_4 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_4_6 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_4_7 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_5_0 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_5_1 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_5_2 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_5_3 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_5_4 +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_5_7 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_6_0 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_6_1 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_6_2 +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_6_6 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_6_7 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_7_0 +DEBUG:snowflake.connector.result_set:result batch 57 has id: data_0_7_1 +DEBUG:snowflake.connector.result_set:result batch 58 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 59 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 60 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 61 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 62 has id: data_0_7_6 +DEBUG:snowflake.connector.result_set:result batch 63 has id: data_0_7_7 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=hzytra7L7xTOgvmkBQA3wRF7klU%3D HTTP/1.1" 200 48610 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 143 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=rSNwlVtfyoxv3QwKaZPu%2F6D8HYI%3D HTTP/1.1" 200 1008225 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=PLjIV0m9w4fLvMEps9ZzRzSZHNg%3D HTTP/1.1" 200 252999 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=Keicl7NJM07gQeguGiRZl7baBwg%3D HTTP/1.1" 200 164808 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 147 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 147 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 147 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 147 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=U4f55oBWDjB5jYr1NOadJk4JRi0%3D HTTP/1.1" 200 1831348 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=jOBXsXA4NVryOauU%2F7Vhc7qQq0k%3D HTTP/1.1" 200 502650 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 293 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 292 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 294 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=XCdlqCzRTdNUYdoLyuO7Jg80%2BXs%3D HTTP/1.1" 200 3729256 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_7 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 583 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 587 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_0_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=JBu0LwOUzTV7BdiDQx3ZyXX4ufI%3D HTTP/1.1" 200 2346426 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 586 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1179 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1177 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=BuVk3kDvY6z%2FFd1d9KDttvWK%2Fz8%3D HTTP/1.1" 200 48162 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1180 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1471 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=QFZGmKcc%2BMoQMt6KBI9Zd%2FQOyUo%3D HTTP/1.1" 200 163910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1428 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1417 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1427 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=ZDff3zroUrHNzH6twnnkuQH0a3Q%3D HTTP/1.1" 200 252143 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1422 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1420 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1423 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1420 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1421 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1428 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1428 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1426 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1428 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1427 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=LS8M3ewHfgu8jCbXUHIUV7Dv7oY%3D HTTP/1.1" 200 499787 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1425 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1418 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1412 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 62 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 144 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 148 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 148 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 148 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 148 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=TMznA%2FvbOCwrOdfzXzPKJ7Tebvg%3D HTTP/1.1" 200 1000970 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 296 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 292 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 294 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=WjAcxA32y8jIpnobqRBm%2BZfD3Uw%3D HTTP/1.1" 200 1745838 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 587 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=YiGkItiSvNiB0jabEE%2BhN%2BWVhL4%3D HTTP/1.1" 200 2087650 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 589 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 591 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=yyNt%2FYPITIjejk6etopFUMEhYU4%3D HTTP/1.1" 200 50989 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1179 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=MAzOjegzY%2F%2FVIp8KFvYWOubMn%2Bc%3D HTTP/1.1" 200 131782 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1177 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=FoJT%2FnYu9PJoFa5ERB21sxULrrE%3D HTTP/1.1" 200 222591 +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1511 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1500 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1501 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1508 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1509 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=DUuL%2Bza0JaDcOPvmFODsOA1itSw%3D HTTP/1.1" 200 460419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1502 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1489 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1487 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1193 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 137 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 140 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 139 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 140 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 141 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 281 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=xQApU4xULoFkEpNg6uXtqNdvTDs%3D HTTP/1.1" 200 1094104 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 281 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_7 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=Pg17MNb4WkhMgfU%2BHMQBXYzCuHM%3D HTTP/1.1" 200 1770791 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 280 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 556 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=RbVHzIERGtf1MZu5EFdDPJn%2BXg4%3D HTTP/1.1" 200 3592428 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 555 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_2_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=HieWPk6yYLpdRA49zAwbWPahTr4%3D HTTP/1.1" 200 2084824 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 555 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 555 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1109 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_3_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=dsaxMkfjpupKfYQcz8V0v3APXrM%3D HTTP/1.1" 200 49854 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1104 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1105 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_3_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=CWiOTdjyFki3sK1HUfSa5jVVcVI%3D HTTP/1.1" 200 169374 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1431 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1429 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1429 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_3_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=jmEBYpivvjgOS5SeH0NSKGOB9zs%3D HTTP/1.1" 200 262448 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1426 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1416 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1433 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1514 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1513 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1500 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1500 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1512 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_3_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=J7nIT1zwPRBSD5dNBLd3ut9w2Q4%3D HTTP/1.1" 200 537303 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1506 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1514 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1513 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1331 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 136 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 140 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 140 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 140 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 139 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 279 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_3_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=cWgh9H6TcbU%2FL0gaEOvziyTJA%2B0%3D HTTP/1.1" 200 898829 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 280 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 278 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_3_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=MJ7GtPqAYBk%2B02AWH8eaiV8OvKY%3D HTTP/1.1" 200 1825723 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 557 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_7 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_3_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=zOAvW8nhQqNcYX%2BHmzD7BGwMa7w%3D HTTP/1.1" 200 3730796 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 553 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 554 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_3_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=kTEMR6Plo213DXOldjWxWRnjo%2B0%3D HTTP/1.1" 200 4658010 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 553 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1104 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1113 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_4_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=F2y8VFHiL%2B%2FCTNja0fcQ6RaEj%2FY%3D HTTP/1.1" 200 51787 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1429 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_4_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=j20nttcW7lfUDobgEc%2BsOuARui8%3D HTTP/1.1" 200 135989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1429 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1423 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1418 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_4_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=XT%2BjY2OCj7Ri6v5dIa7uO0yrNSw%3D HTTP/1.1" 200 227524 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1404 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1404 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1415 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1423 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1423 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1421 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1422 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1422 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_3 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 11 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 11 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 11, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1419 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_4_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=0n4YReacM8y8IIbgQsNg8xnWbtI%3D HTTP/1.1" 200 451697 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1417 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1417 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1409 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1410 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1429 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1429 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1430 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 160 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 137 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 140 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 140 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 140 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 140 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 279 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 279 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_6 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_4_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=EIu0%2FmPhP6UxR96v6RdLj9FUGlw%3D HTTP/1.1" 200 1092415 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_4_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=wVMUv4k8FQuxZ13S6TWEdl9OzUM%3D HTTP/1.1" 200 1760893 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 279 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 561 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_4_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=K8vUCfqXKjtt51HlO1UPVo7F%2BW4%3D HTTP/1.1" 200 3660465 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 570 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_4_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=CaWkZxy574M%2FfLU0I6r6v%2BJoTUQ%3D HTTP/1.1" 200 2555192 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 572 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 571 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1123 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_5_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=v7Iy5l%2FuE9R1ICEV7p3Uz90plTM%3D HTTP/1.1" 200 46713 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1115 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1450 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_5_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=2v13JCvJNAPFPyrUyaHljfFwvWU%3D HTTP/1.1" 200 159282 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1503 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1509 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1507 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_5_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=7JhW8l0vBOCZ8zKoNZ2zNkaiTbg%3D HTTP/1.1" 200 246468 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1506 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1500 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1441 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1441 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1423 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1423 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1421 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1412 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1412 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1416 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_5_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=wl4RmTW6bIkEBgsslrT4fxaXl5Y%3D HTTP/1.1" 200 490730 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1424 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1418 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 616 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 145 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 147 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 149 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 150 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 149 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 41 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 42 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 42 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 297 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_5_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=AjTAEpLx%2Fx4wnhLBTzcaXg0AuXM%3D HTTP/1.1" 200 1005530 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 297 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 295 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_5_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=UQLMZqC6YSe0lVplF%2Bdcykvit00%3D HTTP/1.1" 200 1864193 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 42 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 43 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 43 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 588 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_5_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=0v33yRjjP2M6Jya29lNXTWI8%2BOY%3D HTTP/1.1" 200 3543141 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 593 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_5_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=bx9eKv4AhosAgF1hZYEssqUqPLY%3D HTTP/1.1" 200 3471696 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 597 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 43 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 44 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 44 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1185 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1175 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_6_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=NbquDCKGqDepTsX1dkYWAm6qEmw%3D HTTP/1.1" 200 49556 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1176 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 44 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 45 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 45 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1455 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_6_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=M5%2FxMO3vrzDOwEXyXz9CjrU4EAc%3D HTTP/1.1" 200 167018 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1417 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1459 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 45 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 46 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_6_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=GQGfiQh5ZjwkV1FgxvzpOxnUOIw%3D HTTP/1.1" 200 254707 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 46 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1505 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1416 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1415 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1414 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1414 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1488 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1499 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 46 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 47 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 47 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1501 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1505 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_6_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=jYmxdtaD6k4mAOlpsQKhznlLMyI%3D HTTP/1.1" 200 503466 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1502 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1432 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1421 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1418 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1423 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 904 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 47 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 48 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 48 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 142 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 48 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 49 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 49 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 147 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 148 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 146 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 149 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 49 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 50 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 50 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 295 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_6_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=MCiwGMfGtASH%2FQ8DIOBX9bTqlUo%3D HTTP/1.1" 200 1017298 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 294 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 293 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_6_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=3t%2B1H4cFWqfMQhvoNy3q%2F7UkI2w%3D HTTP/1.1" 200 1807748 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 50 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 51 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 51 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 589 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_7 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_6_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=Plcp4lzzsbuFct4qdJ9j7VRiYt8%3D HTTP/1.1" 200 3745413 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 587 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 584 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_6_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=G8zc48rInZz8Q5oxf47thqxCxeU%3D HTTP/1.1" 200 2803729 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 51 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 52 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 52 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1170 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1173 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_7_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=flMlqjLXKxNxpNZ0CiaFtv9G9SQ%3D HTTP/1.1" 200 45287 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1178 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 52 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 53 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 53 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1450 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_7_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=5x92zeGToPmcXaYu%2B3zyN4o2jjo%3D HTTP/1.1" 200 149474 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1408 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1411 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1413 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 53 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 54 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_7_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=oBNnHnAnfocYQ5SShRvIKs4029I%3D HTTP/1.1" 200 210173 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 54 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1418 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1418 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1424 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1421 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1425 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 54 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 55 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 55 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1426 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1421 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_7_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=GxjyRLa8h7IhQA59BtnIQRhwv4g%3D HTTP/1.1" 200 509194 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1422 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1424 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1351 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 55 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 56 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 56 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 147 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 56 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 57 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 57 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 146 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 147 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 147 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 146 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 57 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 58 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 58 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 147 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 299 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 299 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_7_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=0MheOntDlvnEl85fy2Ztu5pKmLU%3D HTTP/1.1" 200 1050098 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 58 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 59 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_7 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_7_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=2e5hTEJIDJRk1QWVjKA3yHiUfn0%3D HTTP/1.1" 200 1731941 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 59 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 299 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 300 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_7_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=APtCAQvJKI72FaZXMVB8yaZoICU%3D HTTP/1.1" 200 3696767 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 300 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 299 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 300 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 300 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 59 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_7_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668123434&Signature=Pvy5YNEpnQMcuL5V1SLh4CkBUe4%3D HTTP/1.1" 200 1096339 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 60 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 299 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 299 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 299 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 299 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1124 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1108 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 60 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 61 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 61 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1108 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1418 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1422 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1427 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 61 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 62 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1422 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1417 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1413 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1413 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1422 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1423 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1424 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 62 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 63 +DEBUG:snowflake.connector.result_set:user began consuming result batch 63 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1430 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1443 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 457 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 63 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:38:25] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y202uA.4vxqOGzjhoqh2Z5wTkIXWOw5q6Q&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y202uA.4vxqOGzjhoqh2Z5wTkIXWOw5q6Q&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y202uA.4vxqOGzjhoqh2Z5wTkIXWOw5q6Q&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y202uA.4vxqOGzjhoqh2Z5wTkIXWOw5q6Q&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y202uA.4vxqOGzjhoqh2Z5wTkIXWOw5q6Q&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:38:25] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:38:25] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:38:25] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:38:25] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\pgfunctions.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:49:10] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:49:10] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 6.522s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 6.526s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 6.533s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=b3cedb2b-fc0c-4eb3-81c5-6493340b80b3 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f9aaffb7-6b6c-4020-9fa3-7271f2a5ca37 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2299117229952 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2299117229952 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2299117581072 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2299117581072 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2299117581072 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2299117581072 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2299117229952 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2299117229952 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=b3cedb2b-fc0c-4eb3-81c5-6493340b80b3&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=f9aaffb7-6b6c-4020-9fa3-7271f2a5ca37 HTTP/1.1" 200 1546 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=41e92635-3ab2-4c88-9822-8b216f52fed5 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 66d2d774-1ee9-4ea3-a361-e9c060397f90 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=41e92635-3ab2-4c88-9822-8b216f52fed5&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=66d2d774-1ee9-4ea3-a361-e9c060397f90 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00319s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 91fe43fe-8bdf-4951-b582-aa6f50a09a39 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: af7b354f-c6dd-449f-a25a-40b3f9b08933 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=91fe43fe-8bdf-4951-b582-aa6f50a09a39&request_guid=af7b354f-c6dd-449f-a25a-40b3f9b08933 HTTP/1.1" 200 4233 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8386d-0502-afee-1a4b-0303c5ac2807 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8386d-0502-afee-1a4b-0303c5ac2807 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 187 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8386d-0502-afee-1a4b-0303c5ac2807' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8a92be1c-90ad-4e20-86dc-932fb4d676e0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8386d-0502-afee-1a4b-0303c5ac2807?request_guid=8a92be1c-90ad-4e20-86dc-932fb4d676e0 HTTP/1.1" 200 1862 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8386d-0502-afee-1a4b-0303c5ac2807' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b968faa5-c809-4da2-b58a-53c09e9426df +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8386d-0502-afee-1a4b-0303c5ac2807?request_guid=b968faa5-c809-4da2-b58a-53c09e9426df HTTP/1.1" 200 1861 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8386d-0502-afee-1a4b-0303c5ac2807'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: e3364554-d931-4def-ac34-46e71a5f0448 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8386d-0502-afee-1a4b-0303c5ac2807'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8386d-0502-afee-1a4b-0303c5ac2807'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cf200504-e36b-4285-a068-112e99470f7f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e3364554-d931-4def-ac34-46e71a5f0448&request_guid=cf200504-e36b-4285-a068-112e99470f7f HTTP/1.1" 200 4229 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8386d-0502-b1d6-1a4b-0303c5ac19df +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8386d-0502-b1d6-1a4b-0303c5ac19df +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 187 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 29 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 22 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 17 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 33 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 27 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 22 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 17 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 20 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 695420ce-1e8e-495f-b053-17008b6baedf +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 246debca-bde6-4b4b-a2c9-2894be80c289 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=695420ce-1e8e-495f-b053-17008b6baedf&request_guid=246debca-bde6-4b4b-a2c9-2894be80c289 HTTP/1.1" 200 3927 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8386d-0502-b1d6-1a4b-0303c5ac19f7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8386d-0502-b1d6-1a4b-0303c5ac19f7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 158 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8386d-0502-b1d6-1a4b-0303c5ac19f7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0d0f368c-2d44-42ea-b82e-0c5c7ae5ea49 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8386d-0502-b1d6-1a4b-0303c5ac19f7?request_guid=0d0f368c-2d44-42ea-b82e-0c5c7ae5ea49 HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8386d-0502-b1d6-1a4b-0303c5ac19f7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9e5df51f-f4d6-4e3b-ba03-c54eca76a5aa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8386d-0502-b1d6-1a4b-0303c5ac19f7?request_guid=9e5df51f-f4d6-4e3b-ba03-c54eca76a5aa HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8386d-0502-b1d6-1a4b-0303c5ac19f7'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 79ed4fcf-0ad4-488e-90fb-2508125ebc55 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8386d-0502-b1d6-1a4b-0303c5ac19f7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8386d-0502-b1d6-1a4b-0303c5ac19f7'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 318f885f-79e6-441a-9ce0-50e9ebc5c392 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=79ed4fcf-0ad4-488e-90fb-2508125ebc55&request_guid=318f885f-79e6-441a-9ce0-50e9ebc5c392 HTTP/1.1" 200 3931 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8386d-0502-afee-1a4b-0303c5ac2897 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8386d-0502-afee-1a4b-0303c5ac2897 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 158 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 25 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 20 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 14 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 28 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 21 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 19 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 13 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 18 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_VKX0500T');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 7d6ae64a-e764-4114-98f2-911339857947 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_VKX0500T');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_VKX0500T');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b0a2298c-cf5c-4237-9867-acd29863de4f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7d6ae64a-e764-4114-98f2-911339857947&request_guid=b0a2298c-cf5c-4237-9867-acd29863de4f HTTP/1.1" 200 4485 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8386d-0502-af26-1a4b-0303c5ac40c7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8386d-0502-af26-1a4b-0303c5ac40c7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8386d-0502-af26-1a4b-0303c5ac40c7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0268506c-9afd-4f8b-b778-72732067f572 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8386d-0502-af26-1a4b-0303c5ac40c7?request_guid=0268506c-9afd-4f8b-b778-72732067f572 HTTP/1.1" 200 1674 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8386d-0502-af26-1a4b-0303c5ac40c7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: df8245b0-1859-4886-ad3a-94f16ebbd9a6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8386d-0502-af26-1a4b-0303c5ac40c7?request_guid=df8245b0-1859-4886-ad3a-94f16ebbd9a6 HTTP/1.1" 200 1673 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8386d-0502-af26-1a4b-0303c5ac40c7'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: adf4bcee-b8c3-4de0-b083-fb653e3045b3 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8386d-0502-af26-1a4b-0303c5ac40c7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8386d-0502-af26-1a4b-0303c5ac40c7'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 48b9fe04-796b-4388-a4f8-5cf662191b66 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=adf4bcee-b8c3-4de0-b083-fb653e3045b3&request_guid=48b9fe04-796b-4388-a4f8-5cf662191b66 HTTP/1.1" 200 4482 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8386d-0502-b0de-1a4b-0303c5ac0ae3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8386d-0502-b0de-1a4b-0303c5ac0ae3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 3.915s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=6daa29c8-225b-45e5-b74a-ad23f6bc6e86 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c11e1886-3872-4750-9417-240e7fbd3d42 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=6daa29c8-225b-45e5-b74a-ad23f6bc6e86&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=c11e1886-3872-4750-9417-240e7fbd3d42 HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT AFFINITY_INDICATOR,AGR_AUN,ANT_DSL_I,BKR_IFO_ID,CON_EDR_NB,LAST_MODIFIED_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 5d6c57c3-2a7d-473e-aaf7-af988e22c1fb +DEBUG:snowflake.connector.cursor:running query [SELECT AFFINITY_INDICATOR,AGR_AUN,ANT_DSL_I,BKR_IFO_ID,CON_EDR_NB,LAST_MODIFIED_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT AFFINITY_INDICATOR,AGR_AUN,ANT_DSL_I,BKR_IFO_ID,CON_EDR_NB,LAST_MODIFIED_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 25b2dea7-97e4-44df-af29-a5bc380c6977 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5d6c57c3-2a7d-473e-aaf7-af988e22c1fb&request_guid=25b2dea7-97e4-44df-af29-a5bc380c6977 HTTP/1.1" 200 7515 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8386d-0502-b0de-1a4b-0303c5ac0b73 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8386d-0502-b0de-1a4b-0303c5ac0b73 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=63 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8386d-0502-b0de-1a4b-0303c5ac0b73' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8bc66f8c-09ca-42f1-a9e5-dad1ac9de1fc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8386d-0502-b0de-1a4b-0303c5ac0b73?request_guid=8bc66f8c-09ca-42f1-a9e5-dad1ac9de1fc HTTP/1.1" 200 3198 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8386d-0502-b0de-1a4b-0303c5ac0b73' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2fef37d8-a9f5-4a7d-9d2a-35d6788fdc1f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8386d-0502-b0de-1a4b-0303c5ac0b73?request_guid=2fef37d8-a9f5-4a7d-9d2a-35d6788fdc1f HTTP/1.1" 200 3196 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8386d-0502-b0de-1a4b-0303c5ac0b73'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: ed04457b-1c4d-447f-ad8c-c5f4872f88e1 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8386d-0502-b0de-1a4b-0303c5ac0b73'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8386d-0502-b0de-1a4b-0303c5ac0b73'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: dd9befd8-edda-45ba-88c0-6e1f0ef28623 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ed04457b-1c4d-447f-ad8c-c5f4872f88e1&request_guid=dd9befd8-edda-45ba-88c0-6e1f0ef28623 HTTP/1.1" 200 7494 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8386d-0502-afee-1a4b-0303c5ac2993 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8386d-0502-afee-1a4b-0303c5ac2993 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=63 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_0_7 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_2_3 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_2_4 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_2_5 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_2_6 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_2_7 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_3_0 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_3_4 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_3_5 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_3_6 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_3_7 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_4_4 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_4_6 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_4_7 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_5_0 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_5_1 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_5_2 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_5_3 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_5_4 +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_5_7 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_6_0 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_6_1 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_6_2 +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_6_6 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_6_7 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_7_0 +DEBUG:snowflake.connector.result_set:result batch 57 has id: data_0_7_1 +DEBUG:snowflake.connector.result_set:result batch 58 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 59 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 60 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 61 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 62 has id: data_0_7_6 +DEBUG:snowflake.connector.result_set:result batch 63 has id: data_0_7_7 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=Lwmn28rUJltYpR4glNAl8Ur3n0Q%3D HTTP/1.1" 200 48610 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 143 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=HP7RFb3C9Vrw6zPN8TUQxgTdBQQ%3D HTTP/1.1" 200 1008225 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=i12GDZwC4cuc9dcDuMiAHIiwBag%3D HTTP/1.1" 200 164808 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 147 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 147 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 147 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=7%2F5nXOXmWdYzCp%2FDd2R4ixl2l9s%3D HTTP/1.1" 200 502650 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=R%2Fyu4iJXXlCGEwyiBYvum11A8XE%3D HTTP/1.1" 200 252999 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 147 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=YaMWNq2aEMY2GsDKaweYnT%2FxFxg%3D HTTP/1.1" 200 1831348 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 293 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 292 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=jvBtqCviuVcZg79mxbn4qfjR3eg%3D HTTP/1.1" 200 3729256 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 294 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_7 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 583 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 587 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_0_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=HM3cAbhL9ZjabgMVaJ1%2FWBv2fV4%3D HTTP/1.1" 200 2346426 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 586 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1179 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=iZVyS%2FMaOi8GZVVC1nbesw4fnok%3D HTTP/1.1" 200 48162 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1180 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1471 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1428 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=Xjc%2FfAOjkwxAlIBfAXqcxQ97PLs%3D HTTP/1.1" 200 163910 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1417 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1427 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1422 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=cctGCdyoc7QaAccbuZcZS5m%2Fj1k%3D HTTP/1.1" 200 252143 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1420 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1423 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1420 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1421 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1428 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1428 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1426 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1428 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1427 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=gB%2Bdfkf78h%2FuNpwpIT81jpLX%2Bls%3D HTTP/1.1" 200 499787 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1425 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1418 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1412 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 62 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 144 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 148 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 148 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 148 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 148 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 296 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 292 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=%2BEXS7DB1ovnxfYZQQV2iBNZwD3g%3D HTTP/1.1" 200 1000970 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 294 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=cLDhe4e6EaDE8HOSp4QiNly2mGU%3D HTTP/1.1" 200 1745838 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 587 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 589 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=4AKcvM8hXLutFvD5mnF32EAcTGU%3D HTTP/1.1" 200 2087650 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 591 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=oJpYAwEr1kh73jepAviz%2FZ%2BtIc8%3D HTTP/1.1" 200 50989 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1179 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=3vKllS0osCNXAWua0W0ysEkm3XA%3D HTTP/1.1" 200 131782 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1177 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1177 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1511 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=VHu39xHt2MQ%2BsYFfFzkTEZUJvLg%3D HTTP/1.1" 200 222591 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1500 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1501 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1508 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1509 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=%2Fh7NBALNrnD0u7%2BP5EJXyIKo%2FnY%3D HTTP/1.1" 200 460419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1502 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1489 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1487 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1193 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 137 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 140 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 139 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 140 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 141 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 281 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 281 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=QioFglqORxOmX%2BlQiqULRyisGiA%3D HTTP/1.1" 200 1094104 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=CDSurJCW%2F5jLwM8s1fBx31Aq2Kk%3D HTTP/1.1" 200 1770791 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 280 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 556 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=AmU0XP1kTTiXNqChDzrFMk06isE%3D HTTP/1.1" 200 3592428 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 555 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_2_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=W5hf9NA7jUQDb2wiJ9TCmJ%2F%2FrM8%3D HTTP/1.1" 200 2084824 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 555 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 555 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_3_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=O2v2kWW0tNsoMbssvCeVuEyWLD4%3D HTTP/1.1" 200 49854 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1109 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1104 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1105 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_3_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=0g5O7SMEWLF26Kr%2FVER3OOqRw94%3D HTTP/1.1" 200 169374 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1431 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1429 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1429 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_2 with existing session +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1426 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_3_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=9k41RJEm9%2F%2FL5qsU7Pl1KjLR2kg%3D HTTP/1.1" 200 262448 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1416 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1433 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1514 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1513 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1500 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1500 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1512 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1506 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_3_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=i7X0s8lBVKlIkOXmNLYsLgI8%2BH4%3D HTTP/1.1" 200 537303 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1514 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1513 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1331 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 136 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 140 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 140 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 140 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 139 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 279 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 280 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_3_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=x%2F6YtvrV6u3zi06mHh5lOayTRyM%3D HTTP/1.1" 200 898829 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 278 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 557 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 553 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 554 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_3_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=7NRo23l%2FlwOB0mCuGTQeZNgQvYI%3D HTTP/1.1" 200 3730796 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_3_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=wZHJm9LodP6N9niMqQvpcJEiZCs%3D HTTP/1.1" 200 1825723 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_3_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=zdC4Bmvj%2BWSfMAnRHOJE7K6d3MA%3D HTTP/1.1" 200 4658010 +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 553 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1104 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1113 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_4_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=f%2FOvsxGOF4MSqmncTZzxgrMeRL4%3D HTTP/1.1" 200 51787 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_4_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=YG1%2B5quukaFdl%2BM45amOytcZ1pc%3D HTTP/1.1" 200 135989 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1429 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1429 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1423 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1418 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_4_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=V%2BPyHG8AnYykZEdaawnWbhwthxw%3D HTTP/1.1" 200 227524 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1404 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1404 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1415 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1423 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1423 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1421 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1422 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1422 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_3 with existing session +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 11 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 11 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 11, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1419 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_4_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=Do3bOsiQlN4QVrPRD13v%2FjJmAcU%3D HTTP/1.1" 200 451697 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1417 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1417 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1409 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1410 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1429 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 1429 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 1430 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 10, rows in current batch: 160 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 137 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 140 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 140 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 140 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 140 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 279 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 279 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_4_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=V3Zr9bhwlbXNeselKsVhi%2FVxSTY%3D HTTP/1.1" 200 1092415 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 279 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_7 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_4_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=pigOrrjjwQM7b2PMH%2FfGVES4h8c%3D HTTP/1.1" 200 1760893 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 561 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 570 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_4_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=aoYhzK47qrmM5p27vef5db7We3w%3D HTTP/1.1" 200 3660465 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 572 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 571 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_4_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=z3lKP%2FTqQysTnGqqEgX%2B3oe7dKw%3D HTTP/1.1" 200 2555192 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1123 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_5_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=st%2FSFo9Mb7KjaWjkLyUtelzhZ7o%3D HTTP/1.1" 200 46713 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1115 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1450 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_5_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=PW%2FsHkGsV71E0%2FH23oBIN9%2FKdOk%3D HTTP/1.1" 200 159282 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1503 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1509 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1507 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_5_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=QOwSG7NbEM7FUt1od2HNEXub9p8%3D HTTP/1.1" 200 246468 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1506 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1500 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1441 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1441 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1423 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1423 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1421 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1412 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1412 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1416 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_5_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=AvTXZ7s8FgJT4Vu1ggc%2BWFjXi%2FY%3D HTTP/1.1" 200 490730 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1424 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1418 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 616 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 145 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 147 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 149 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 150 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 149 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 41 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 42 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 42 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 297 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 297 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 295 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 42 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_5_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=Jm0JiZkwgkFiXbnoUr4mhGPRw7E%3D HTTP/1.1" 200 1005530 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 43 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_7 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_5_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=6bpktW5aabRhczSaiGAAHIShbw0%3D HTTP/1.1" 200 1864193 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 43 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 588 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 593 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 597 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_5_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=2eM0YAjEMRO95iZa6QQFSUaXSnU%3D HTTP/1.1" 200 3543141 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 43 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 44 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_5_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=u%2FhVvqCfGkr8hL2m12GcsIfYB%2Fs%3D HTTP/1.1" 200 3471696 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 44 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1185 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_6_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=QEQE16dQ2ItSeC%2Buc0aDj7hTfcc%3D HTTP/1.1" 200 49556 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1175 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1176 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 44 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 45 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 45 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1455 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_6_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=1CnR0LgvJDT5VUKjW5Au%2B88L%2Be0%3D HTTP/1.1" 200 167018 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1417 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1459 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_7 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 45 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 46 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 46 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1505 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1419 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_6_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=g2T59PnHAQsDvM9PIUIe6FoLfF8%3D HTTP/1.1" 200 254707 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1416 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1415 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1414 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1414 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1488 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1499 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 46 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 47 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 47 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1501 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_6_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=W5Fhdv9Q8r8LdvLirzUulwp6bjA%3D HTTP/1.1" 200 503466 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1505 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1502 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1432 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1421 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1418 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1423 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 904 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 47 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 48 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 48 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 142 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 48 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 49 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 49 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 147 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 148 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 146 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 149 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 49 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 50 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 50 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 295 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 294 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 293 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_6_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=MHInlHbawj%2F8EWG0S%2BSmpGBLeFo%3D HTTP/1.1" 200 1017298 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 50 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 51 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_6_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=XkPeK5VIFz6fACF8h1lLddpNStI%3D HTTP/1.1" 200 1807748 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 51 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 589 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 587 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 584 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_6_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=0GKMxbxK%2BDK487ZEZeFtwRUvTl8%3D HTTP/1.1" 200 3745413 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 51 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 52 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_0 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 52 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1170 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_6_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=w%2B3tamp53qPTwN%2BJddMxgGWFMmk%3D HTTP/1.1" 200 2803729 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1173 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_7_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=DIc8y5gP5GhoIMgj03arqfVq4XI%3D HTTP/1.1" 200 45287 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1178 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 52 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 53 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 53 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1450 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_7_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=NVe8LAFQuUVXfNWg3XrWrgXDoqo%3D HTTP/1.1" 200 149474 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1408 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1411 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1413 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 53 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 54 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_2 with existing session +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_7_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=%2BvboojFeULGjtDySXRocBy%2FBaoM%3D HTTP/1.1" 200 210173 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 54 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1418 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1418 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1424 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1421 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1425 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 54 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 55 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 55 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1426 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1421 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_7_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=9yljHVzodiac4rJ2djBho9e5JIA%3D HTTP/1.1" 200 509194 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1422 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1424 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1351 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 55 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 56 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 56 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 147 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 56 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_4 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 57 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 57 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 146 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 147 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 147 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 146 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 57 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 58 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 58 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 147 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 299 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 299 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_7_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=3HbSfUqGIiVmzfG3%2F%2FjskPcQzUA%3D HTTP/1.1" 200 1050098 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 58 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 59 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 59 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 299 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 300 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 300 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_7_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=yd7ja2K1GDaFtVGsH9dhOD5lTik%3D HTTP/1.1" 200 1731941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 299 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 300 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 300 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 59 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_7_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=GGHPHYq2A9UcSQfkuCmVxYab22s%3D HTTP/1.1" 200 1096339 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83861-0502-af26-1a4b-0303c5a8f6ff_0/main/data_0_7_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668124166&Signature=wFhjjPNi6VBVe3bnBphRCpSnEDI%3D HTTP/1.1" 200 3696767 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 60 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 299 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 299 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 299 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 299 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1124 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1108 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 60 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 61 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 61 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1108 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1418 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1422 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1427 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 61 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 62 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 62 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1422 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1417 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1413 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1413 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1419 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1422 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 1423 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 1424 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 62 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 63 +DEBUG:snowflake.connector.result_set:user began consuming result batch 63 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 187, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1430 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1443 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 457 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 63 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 763dadd0-44d2-4934-ab4e-567b3026c374 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=763dadd0-44d2-4934-ab4e-567b3026c374 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\pgfunctions.py', reloading +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:52:22] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:54:01] "POST /submit HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:54:01] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:54:01] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:54:01] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:54:01] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:54:01] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:54:01] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:54:01] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:54:02] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:54:02] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:54:02] "GET /js/main.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 81.66s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 81.66s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 81.67s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=dd6f8ebb-0106-4ce3-945d-56e171e997ea +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b84f7688-c512-44e4-a88e-dda2144bd0c3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2499397197904 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2499397197904 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2499397516256 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2499397516256 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2499397516256 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2499397516256 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2499397197904 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2499397197904 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=dd6f8ebb-0106-4ce3-945d-56e171e997ea&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=b84f7688-c512-44e4-a88e-dda2144bd0c3 HTTP/1.1" 200 1542 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=9d786f64-d8cb-4369-b5a9-b046b448d2d6 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: dbeafedd-08f3-45a6-9677-75c96f23b360 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=9d786f64-d8cb-4369-b5a9-b046b448d2d6&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=dbeafedd-08f3-45a6-9677-75c96f23b360 HTTP/1.1" 200 1548 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.05415s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 744816e3-d5ca-41b1-bfa2-1776786bb992 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ecbaf76a-d838-4e96-89c0-ce602040e288 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=744816e3-d5ca-41b1-bfa2-1776786bb992&request_guid=ecbaf76a-d838-4e96-89c0-ce602040e288 HTTP/1.1" 200 2268 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83872-0502-ae87-1a4b-0303c5ad5c5f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83872-0502-ae87-1a4b-0303c5ad5c5f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83872-0502-ae87-1a4b-0303c5ad5c5f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4b7ec120-ed14-4933-b19f-90c6672a346e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83872-0502-ae87-1a4b-0303c5ad5c5f?request_guid=4b7ec120-ed14-4933-b19f-90c6672a346e HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83872-0502-ae87-1a4b-0303c5ad5c5f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8d884b4e-54ac-485e-b6c4-a01e305e8459 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83872-0502-ae87-1a4b-0303c5ad5c5f?request_guid=8d884b4e-54ac-485e-b6c4-a01e305e8459 HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83872-0502-ae87-1a4b-0303c5ad5c5f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 496743dc-d40e-4b4c-8093-825167165662 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83872-0502-ae87-1a4b-0303c5ad5c5f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83872-0502-ae87-1a4b-0303c5ad5c5f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 834623df-d499-4f6e-a667-8679a7413fea +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=496743dc-d40e-4b4c-8093-825167165662&request_guid=834623df-d499-4f6e-a667-8679a7413fea HTTP/1.1" 200 2265 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83872-0502-b1d6-1a4b-0303c5ad6cf7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83872-0502-b1d6-1a4b-0303c5ad6cf7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 33e94ed3-9be1-4419-89c7-b4376f0c9922 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3ab98454-022b-4392-989e-02035dad88b1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=33e94ed3-9be1-4419-89c7-b4376f0c9922&request_guid=3ab98454-022b-4392-989e-02035dad88b1 HTTP/1.1" 200 1788 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83872-0502-b1d6-1a4b-0303c5ad6d07 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83872-0502-b1d6-1a4b-0303c5ad6d07 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83872-0502-b1d6-1a4b-0303c5ad6d07' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a67f870e-e801-466f-8c8e-32d09b2d834c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83872-0502-b1d6-1a4b-0303c5ad6d07?request_guid=a67f870e-e801-466f-8c8e-32d09b2d834c HTTP/1.1" 200 2163 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83872-0502-b1d6-1a4b-0303c5ad6d07' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5d21d7aa-a530-4abd-a656-c08fa96e0db4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83872-0502-b1d6-1a4b-0303c5ad6d07?request_guid=5d21d7aa-a530-4abd-a656-c08fa96e0db4 HTTP/1.1" 200 2163 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83872-0502-b1d6-1a4b-0303c5ad6d07'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 5880756d-1618-4dd1-92e6-36d0da4e50f9 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83872-0502-b1d6-1a4b-0303c5ad6d07'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83872-0502-b1d6-1a4b-0303c5ad6d07'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cc079612-173c-47e9-a3a7-ab019e242348 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5880756d-1618-4dd1-92e6-36d0da4e50f9&request_guid=cc079612-173c-47e9-a3a7-ab019e242348 HTTP/1.1" 200 1785 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83872-0502-b1d6-1a4b-0303c5ad6d37 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83872-0502-b1d6-1a4b-0303c5ad6d37 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 7f974047-6903-48a6-b1e2-395cb919dcab +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1cd6afc5-44bf-4d27-b343-a384936e91c4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7f974047-6903-48a6-b1e2-395cb919dcab&request_guid=1cd6afc5-44bf-4d27-b343-a384936e91c4 HTTP/1.1" 200 2289 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83872-0502-ae87-1a4b-0303c5ad5c9f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83872-0502-ae87-1a4b-0303c5ad5c9f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83872-0502-ae87-1a4b-0303c5ad5c9f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 78b0efe7-8db2-466a-bc11-d266a1ee59a3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83872-0502-ae87-1a4b-0303c5ad5c9f?request_guid=78b0efe7-8db2-466a-bc11-d266a1ee59a3 HTTP/1.1" 200 1682 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83872-0502-ae87-1a4b-0303c5ad5c9f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 157a0ff5-9007-4115-8a7d-2fa12fe2db54 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83872-0502-ae87-1a4b-0303c5ad5c9f?request_guid=157a0ff5-9007-4115-8a7d-2fa12fe2db54 HTTP/1.1" 200 1682 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83872-0502-ae87-1a4b-0303c5ad5c9f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 5b503f33-42f1-46f2-bf3d-096c441baa1c +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83872-0502-ae87-1a4b-0303c5ad5c9f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83872-0502-ae87-1a4b-0303c5ad5c9f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 61e3ceda-8d9e-4033-8e68-9ab29c9c668d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5b503f33-42f1-46f2-bf3d-096c441baa1c&request_guid=61e3ceda-8d9e-4033-8e68-9ab29c9c668d HTTP/1.1" 200 2289 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83872-0502-ae87-1a4b-0303c5ad5cb7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83872-0502-ae87-1a4b-0303c5ad5cb7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:54:10] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:54:10] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:54:10] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:54:10] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:56:14] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 213.7s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 213.7s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 213.7s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=5ff03516-35a0-4c98-a233-44400296bc08 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f920639b-d68c-4579-ba5b-9a8767fb159e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=5ff03516-35a0-4c98-a233-44400296bc08&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=f920639b-d68c-4579-ba5b-9a8767fb159e HTTP/1.1" 200 1549 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=ea1c8776-d5d7-4afc-b334-98295c63c560 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9ef10eaf-ed81-4c37-a87a-dd941a51e94c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=ea1c8776-d5d7-4afc-b334-98295c63c560&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=9ef10eaf-ed81-4c37-a87a-dd941a51e94c HTTP/1.1" 200 1545 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 131.9s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: c4c2b814-d955-40b6-afa5-1b50f99fc55c +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 259c180a-df6b-49ed-a3ce-70bc4d35a2a0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c4c2b814-d955-40b6-afa5-1b50f99fc55c&request_guid=259c180a-df6b-49ed-a3ce-70bc4d35a2a0 HTTP/1.1" 200 2264 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83874-0502-b1d6-1a4b-0303c5adf9ef +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83874-0502-b1d6-1a4b-0303c5adf9ef +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83874-0502-b1d6-1a4b-0303c5adf9ef' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c127fe9d-0fef-491f-9596-70dcdff9e9f6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83874-0502-b1d6-1a4b-0303c5adf9ef?request_guid=c127fe9d-0fef-491f-9596-70dcdff9e9f6 HTTP/1.1" 200 1856 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83874-0502-b1d6-1a4b-0303c5adf9ef' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 85f668a6-94b9-4d8b-bda3-f0e0ae4f233c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83874-0502-b1d6-1a4b-0303c5adf9ef?request_guid=85f668a6-94b9-4d8b-bda3-f0e0ae4f233c HTTP/1.1" 200 1855 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83874-0502-b1d6-1a4b-0303c5adf9ef'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 4c75bc4b-67cc-4475-bb93-ec56be7ebe0c +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83874-0502-b1d6-1a4b-0303c5adf9ef'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83874-0502-b1d6-1a4b-0303c5adf9ef'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9eb4ab5e-4215-4fc6-b7c5-7453c2b25ab5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4c75bc4b-67cc-4475-bb93-ec56be7ebe0c&request_guid=9eb4ab5e-4215-4fc6-b7c5-7453c2b25ab5 HTTP/1.1" 200 2262 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83874-0502-af26-1a4b-0303c5adec5b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83874-0502-af26-1a4b-0303c5adec5b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 51b3785d-7f0a-46bb-8e69-82f1ebc23a62 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1111b85a-dd02-4bf4-876e-d19cf3ccfd3d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=51b3785d-7f0a-46bb-8e69-82f1ebc23a62&request_guid=1111b85a-dd02-4bf4-876e-d19cf3ccfd3d HTTP/1.1" 200 1791 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83874-0502-af26-1a4b-0303c5adec5f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83874-0502-af26-1a4b-0303c5adec5f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83874-0502-af26-1a4b-0303c5adec5f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 01904b64-34a5-4fb5-89eb-e177e7f09ec7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83874-0502-af26-1a4b-0303c5adec5f?request_guid=01904b64-34a5-4fb5-89eb-e177e7f09ec7 HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83874-0502-af26-1a4b-0303c5adec5f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e1f209c6-c580-4b7b-8963-9ab66ec9e04d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83874-0502-af26-1a4b-0303c5adec5f?request_guid=e1f209c6-c580-4b7b-8963-9ab66ec9e04d HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83874-0502-af26-1a4b-0303c5adec5f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 12fba2a3-0c5b-4011-9d19-27e11b1c273b +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83874-0502-af26-1a4b-0303c5adec5f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83874-0502-af26-1a4b-0303c5adec5f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c95c837e-2c66-40b1-a19b-c9a4403a406f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=12fba2a3-0c5b-4011-9d19-27e11b1c273b&request_guid=c95c837e-2c66-40b1-a19b-c9a4403a406f HTTP/1.1" 200 1789 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83874-0502-b1d6-1a4b-0303c5adfa6f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83874-0502-b1d6-1a4b-0303c5adfa6f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 80604e18-6bd5-4d17-8693-1ac07abfb5ab +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 85a242d2-d95f-42ca-839f-81e1ad6bf0e1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=80604e18-6bd5-4d17-8693-1ac07abfb5ab&request_guid=85a242d2-d95f-42ca-839f-81e1ad6bf0e1 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83874-0502-afee-1a4b-0303c5ae1717 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83874-0502-afee-1a4b-0303c5ae1717 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83874-0502-afee-1a4b-0303c5ae1717' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 08a55936-7598-4794-8c36-b85ecac9bab3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83874-0502-afee-1a4b-0303c5ae1717?request_guid=08a55936-7598-4794-8c36-b85ecac9bab3 HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83874-0502-afee-1a4b-0303c5ae1717' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a92d6986-0e08-463f-8784-f418e2f4c8fe +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83874-0502-afee-1a4b-0303c5ae1717?request_guid=a92d6986-0e08-463f-8784-f418e2f4c8fe HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83874-0502-afee-1a4b-0303c5ae1717'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 1fb0a8d4-6038-4a97-b632-3bcccb85d8e8 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83874-0502-afee-1a4b-0303c5ae1717'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83874-0502-afee-1a4b-0303c5ae1717'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cb1ca45e-248f-4e98-89af-7460c7b31f81 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1fb0a8d4-6038-4a97-b632-3bcccb85d8e8&request_guid=cb1ca45e-248f-4e98-89af-7460c7b31f81 HTTP/1.1" 200 2284 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83874-0502-b0de-1a4b-0303c5ae2157 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83874-0502-b0de-1a4b-0303c5ae2157 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:56:22] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:56:22] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:56:23] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 12:56:23] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 11.69s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 11.69s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 11.7s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=baee210a-54cc-4fb7-95f9-bb8f618bffe5 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1ff70584-b738-4d11-bc2e-04ef4137ff97 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1977639997968 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1977639997968 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1977640316320 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1977640316320 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1977640316320 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1977640316320 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1977639997968 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1977639997968 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=baee210a-54cc-4fb7-95f9-bb8f618bffe5&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=1ff70584-b738-4d11-bc2e-04ef4137ff97 HTTP/1.1" 200 1549 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=a58c62bf-7f98-4d35-8b4d-65ab1c0232bf +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9e677e21-ed20-444d-a167-0da96cf2b98a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=a58c62bf-7f98-4d35-8b4d-65ab1c0232bf&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=9e677e21-ed20-444d-a167-0da96cf2b98a HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00271s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: d7a3e6c5-13ff-4676-8b27-8b6678be8691 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 909cb84d-dedc-4bfe-bbb8-8d890afa9c9c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d7a3e6c5-13ff-4676-8b27-8b6678be8691&request_guid=909cb84d-dedc-4bfe-bbb8-8d890afa9c9c HTTP/1.1" 200 2269 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83881-0502-afee-1a4b-0303c5b1d6bf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83881-0502-afee-1a4b-0303c5b1d6bf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83881-0502-afee-1a4b-0303c5b1d6bf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2b3c03c1-00e2-4aba-9453-88e358cf280f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83881-0502-afee-1a4b-0303c5b1d6bf?request_guid=2b3c03c1-00e2-4aba-9453-88e358cf280f HTTP/1.1" 200 1852 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83881-0502-afee-1a4b-0303c5b1d6bf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 75ec80dd-eaa2-48d2-a284-d365d9842610 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83881-0502-afee-1a4b-0303c5b1d6bf?request_guid=75ec80dd-eaa2-48d2-a284-d365d9842610 HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83881-0502-afee-1a4b-0303c5b1d6bf'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: e061f09d-c077-43d5-87fd-3eb0de9b2411 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83881-0502-afee-1a4b-0303c5b1d6bf'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83881-0502-afee-1a4b-0303c5b1d6bf'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a79cfb90-d4c2-4028-b9dc-5b88d7247d23 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e061f09d-c077-43d5-87fd-3eb0de9b2411&request_guid=a79cfb90-d4c2-4028-b9dc-5b88d7247d23 HTTP/1.1" 200 2269 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83881-0502-afee-1a4b-0303c5b1d6e3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83881-0502-afee-1a4b-0303c5b1d6e3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 7811733c-4cc0-49b2-a818-e2e98bdb686d +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9ccffd07-4927-4af1-80fa-299005958973 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7811733c-4cc0-49b2-a818-e2e98bdb686d&request_guid=9ccffd07-4927-4af1-80fa-299005958973 HTTP/1.1" 200 1788 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83881-0502-b0de-1a4b-0303c5b1e4a3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83881-0502-b0de-1a4b-0303c5b1e4a3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83881-0502-b0de-1a4b-0303c5b1e4a3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bd716e90-f1f0-438a-9b91-2b4a221c07fe +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83881-0502-b0de-1a4b-0303c5b1e4a3?request_guid=bd716e90-f1f0-438a-9b91-2b4a221c07fe HTTP/1.1" 200 2178 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83881-0502-b0de-1a4b-0303c5b1e4a3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 78571268-eeed-48f4-bd85-f6b7bfbe855e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83881-0502-b0de-1a4b-0303c5b1e4a3?request_guid=78571268-eeed-48f4-bd85-f6b7bfbe855e HTTP/1.1" 200 2178 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83881-0502-b0de-1a4b-0303c5b1e4a3'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: a17ca687-0a52-43ae-a4b7-1c5b080fabc5 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83881-0502-b0de-1a4b-0303c5b1e4a3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83881-0502-b0de-1a4b-0303c5b1e4a3'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fb4154dc-1cff-40c6-938a-4c4a9aae029b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a17ca687-0a52-43ae-a4b7-1c5b080fabc5&request_guid=fb4154dc-1cff-40c6-938a-4c4a9aae029b HTTP/1.1" 200 1792 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83881-0502-ae87-1a4b-0303c5b1ba7f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83881-0502-ae87-1a4b-0303c5b1ba7f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: e4114530-6a80-4501-8f24-a0f55d162453 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e09bc765-95bb-4013-9521-04a1a5068c84 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e4114530-6a80-4501-8f24-a0f55d162453&request_guid=e09bc765-95bb-4013-9521-04a1a5068c84 HTTP/1.1" 200 2288 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83881-0502-afee-1a4b-0303c5b1d73b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83881-0502-afee-1a4b-0303c5b1d73b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83881-0502-afee-1a4b-0303c5b1d73b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 588d43ad-e480-4c15-830c-e7249477ef83 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83881-0502-afee-1a4b-0303c5b1d73b?request_guid=588d43ad-e480-4c15-830c-e7249477ef83 HTTP/1.1" 200 1674 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83881-0502-afee-1a4b-0303c5b1d73b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 55d2ed76-2a70-43d1-a3ca-d5ac0e536509 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83881-0502-afee-1a4b-0303c5b1d73b?request_guid=55d2ed76-2a70-43d1-a3ca-d5ac0e536509 HTTP/1.1" 200 1674 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83881-0502-afee-1a4b-0303c5b1d73b'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 62aa113f-07dc-445e-b42b-629380f6f8f3 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83881-0502-afee-1a4b-0303c5b1d73b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83881-0502-afee-1a4b-0303c5b1d73b'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: aff35e9c-a11a-4b7d-b0cb-137f1877490f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=62aa113f-07dc-445e-b42b-629380f6f8f3&request_guid=aff35e9c-a11a-4b7d-b0cb-137f1877490f HTTP/1.1" 200 2284 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83881-0502-b1d6-1a4b-0303c5b1c7bb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83881-0502-b1d6-1a4b-0303c5b1c7bb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:09:57] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:09:57] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:09:57] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:09:58] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 16.91s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 16.91s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 16.92s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=a4a9e8bd-6871-412d-8a50-a1cdcff004ca +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a3af03ec-4c45-485c-85c9-14dd3cbd33c3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1627746980560 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1627746980560 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1627747282528 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1627747282528 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1627747282528 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1627747282528 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1627746980560 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1627746980560 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=a4a9e8bd-6871-412d-8a50-a1cdcff004ca&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=a3af03ec-4c45-485c-85c9-14dd3cbd33c3 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=5a7148fb-aaed-4eef-ae6e-241836edd77e +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c2b555fd-50ca-495f-a97f-0366da8824ee +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=5a7148fb-aaed-4eef-ae6e-241836edd77e&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=c2b555fd-50ca-495f-a97f-0366da8824ee HTTP/1.1" 200 1547 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00230s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: a3463a0d-8690-4407-b582-cd82f78f8c15 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a20b0901-2bf4-49d1-9300-7b95bca5bf8a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a3463a0d-8690-4407-b582-cd82f78f8c15&request_guid=a20b0901-2bf4-49d1-9300-7b95bca5bf8a HTTP/1.1" 200 2265 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83885-0502-b1d6-1a4b-0303c5b308af +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83885-0502-b1d6-1a4b-0303c5b308af +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83885-0502-b1d6-1a4b-0303c5b308af' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 49b7509d-da3f-4052-b509-7c3ff14d035f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83885-0502-b1d6-1a4b-0303c5b308af?request_guid=49b7509d-da3f-4052-b509-7c3ff14d035f HTTP/1.1" 200 1856 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83885-0502-b1d6-1a4b-0303c5b308af' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e718c5c4-5623-46ec-8338-7dfd5647346f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83885-0502-b1d6-1a4b-0303c5b308af?request_guid=e718c5c4-5623-46ec-8338-7dfd5647346f HTTP/1.1" 200 1856 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83885-0502-b1d6-1a4b-0303c5b308af'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 5b1666d1-4165-4892-9e12-70456e330d54 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83885-0502-b1d6-1a4b-0303c5b308af'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83885-0502-b1d6-1a4b-0303c5b308af'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f7a4cee0-18b7-4406-a8c3-2f6ce6f6b55c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5b1666d1-4165-4892-9e12-70456e330d54&request_guid=f7a4cee0-18b7-4406-a8c3-2f6ce6f6b55c HTTP/1.1" 200 2269 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83885-0502-afee-1a4b-0303c5b3262f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83885-0502-afee-1a4b-0303c5b3262f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 5b550e37-7641-4694-b825-f242d2dee1ac +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 29118a04-5a20-4a42-a333-3002cae089d8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5b550e37-7641-4694-b825-f242d2dee1ac&request_guid=29118a04-5a20-4a42-a333-3002cae089d8 HTTP/1.1" 200 1792 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83885-0502-afee-1a4b-0303c5b32643 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83885-0502-afee-1a4b-0303c5b32643 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83885-0502-afee-1a4b-0303c5b32643' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cb779b3d-6d96-4849-a4bf-ac6434c5375b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83885-0502-afee-1a4b-0303c5b32643?request_guid=cb779b3d-6d96-4849-a4bf-ac6434c5375b HTTP/1.1" 200 2179 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83885-0502-afee-1a4b-0303c5b32643' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4bbed814-9a01-44ba-a2ff-16f4dc013851 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83885-0502-afee-1a4b-0303c5b32643?request_guid=4bbed814-9a01-44ba-a2ff-16f4dc013851 HTTP/1.1" 200 2179 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83885-0502-afee-1a4b-0303c5b32643'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 69453d06-f9f6-42d0-8c48-4af137184354 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83885-0502-afee-1a4b-0303c5b32643'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83885-0502-afee-1a4b-0303c5b32643'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: aba83859-7a43-415b-b08c-724e842b5c5b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=69453d06-f9f6-42d0-8c48-4af137184354&request_guid=aba83859-7a43-415b-b08c-724e842b5c5b HTTP/1.1" 200 1787 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83885-0502-b1d6-1a4b-0303c5b309f3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83885-0502-b1d6-1a4b-0303c5b309f3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 07662cc4-ea47-44fa-820e-05701d0b7bb9 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a7774cbe-ab81-4dbe-87fa-7786f511815d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=07662cc4-ea47-44fa-820e-05701d0b7bb9&request_guid=a7774cbe-ab81-4dbe-87fa-7786f511815d HTTP/1.1" 200 2280 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83885-0502-b0de-1a4b-0303c5b318a3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83885-0502-b0de-1a4b-0303c5b318a3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83885-0502-b0de-1a4b-0303c5b318a3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 52633d5d-9e83-4d61-bdd1-7010da6053ab +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83885-0502-b0de-1a4b-0303c5b318a3?request_guid=52633d5d-9e83-4d61-bdd1-7010da6053ab HTTP/1.1" 200 1673 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83885-0502-b0de-1a4b-0303c5b318a3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bdd7f42e-a049-40dc-80be-1ae7a507ce4e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83885-0502-b0de-1a4b-0303c5b318a3?request_guid=bdd7f42e-a049-40dc-80be-1ae7a507ce4e HTTP/1.1" 200 1673 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83885-0502-b0de-1a4b-0303c5b318a3'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 891957c5-24b1-432b-8e7c-13bab6564857 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83885-0502-b0de-1a4b-0303c5b318a3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83885-0502-b0de-1a4b-0303c5b318a3'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cd60ef63-f441-484a-93b7-7060816b6656 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=891957c5-24b1-432b-8e7c-13bab6564857&request_guid=cd60ef63-f441-484a-93b7-7060816b6656 HTTP/1.1" 200 2284 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83885-0502-af26-1a4b-0303c5b2ede3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83885-0502-af26-1a4b-0303c5b2ede3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:15:24] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:15:24] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:15:24] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:15:24] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 12.49s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 12.49s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 12.5s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=56a6e46e-9fef-4be6-b80d-3761ef884833 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9e4fe5c6-9263-48c2-95e2-a901f32d84d0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2140313736032 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2140313736032 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2140314038000 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2140314038000 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2140314038000 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2140314038000 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2140313736032 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2140313736032 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=56a6e46e-9fef-4be6-b80d-3761ef884833&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=9e4fe5c6-9263-48c2-95e2-a901f32d84d0 HTTP/1.1" 200 1545 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=2b45718a-f339-433a-9935-d9ee1927e86b +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9a767581-af77-4697-bcdc-d8b7a5171f58 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=2b45718a-f339-433a-9935-d9ee1927e86b&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=9a767581-af77-4697-bcdc-d8b7a5171f58 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00135s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: e12ab86f-0614-4a34-bdfd-f5dd56ebcdb5 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b69842f3-ef6b-4ded-8af0-a00fce9cffca +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e12ab86f-0614-4a34-bdfd-f5dd56ebcdb5&request_guid=b69842f3-ef6b-4ded-8af0-a00fce9cffca HTTP/1.1" 200 2270 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8388c-0502-afee-1a4b-0303c5b55053 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8388c-0502-afee-1a4b-0303c5b55053 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8388c-0502-afee-1a4b-0303c5b55053' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ab325f30-7520-4fb7-a97a-a19ccc145d90 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8388c-0502-afee-1a4b-0303c5b55053?request_guid=ab325f30-7520-4fb7-a97a-a19ccc145d90 HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8388c-0502-afee-1a4b-0303c5b55053' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8e9ebab2-656b-4d85-8c9c-ee4b021af028 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8388c-0502-afee-1a4b-0303c5b55053?request_guid=8e9ebab2-656b-4d85-8c9c-ee4b021af028 HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8388c-0502-afee-1a4b-0303c5b55053'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: fc3eb13c-56db-4cbe-a8bc-063b57aed6f3 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8388c-0502-afee-1a4b-0303c5b55053'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8388c-0502-afee-1a4b-0303c5b55053'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c0f03392-2691-410b-8448-79496498b75d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=fc3eb13c-56db-4cbe-a8bc-063b57aed6f3&request_guid=c0f03392-2691-410b-8448-79496498b75d HTTP/1.1" 200 2266 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8388c-0502-b0de-1a4b-0303c5b5408b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8388c-0502-b0de-1a4b-0303c5b5408b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 559fe7ec-9bf5-467b-ad0d-a49ee702de0e +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4ce5ec3c-2a9e-4139-b202-9a9881353b57 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=559fe7ec-9bf5-467b-ad0d-a49ee702de0e&request_guid=4ce5ec3c-2a9e-4139-b202-9a9881353b57 HTTP/1.1" 200 1788 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8388c-0502-b0de-1a4b-0303c5b54093 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8388c-0502-b0de-1a4b-0303c5b54093 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8388c-0502-b0de-1a4b-0303c5b54093' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3faff7ae-4112-447a-87d7-16cb0bc0a6ba +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8388c-0502-b0de-1a4b-0303c5b54093?request_guid=3faff7ae-4112-447a-87d7-16cb0bc0a6ba HTTP/1.1" 200 2174 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8388c-0502-b0de-1a4b-0303c5b54093' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f0c8ed70-b750-492f-89cc-ca95fa83affe +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8388c-0502-b0de-1a4b-0303c5b54093?request_guid=f0c8ed70-b750-492f-89cc-ca95fa83affe HTTP/1.1" 200 2174 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8388c-0502-b0de-1a4b-0303c5b54093'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: d72826a8-12b6-4c51-80a2-54310f2dbc60 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8388c-0502-b0de-1a4b-0303c5b54093'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8388c-0502-b0de-1a4b-0303c5b54093'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e5cfa6a1-1cd4-45ab-a94c-b514b12a1764 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d72826a8-12b6-4c51-80a2-54310f2dbc60&request_guid=e5cfa6a1-1cd4-45ab-a94c-b514b12a1764 HTTP/1.1" 200 1789 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8388c-0502-b1d6-1a4b-0303c5b53353 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8388c-0502-b1d6-1a4b-0303c5b53353 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 2ac9d777-2d53-4b11-bfae-e374f2cc777b +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 42f09a42-94e0-40b3-a2b2-427891546284 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2ac9d777-2d53-4b11-bfae-e374f2cc777b&request_guid=42f09a42-94e0-40b3-a2b2-427891546284 HTTP/1.1" 200 2281 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8388c-0502-b1d6-1a4b-0303c5b5335b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8388c-0502-b1d6-1a4b-0303c5b5335b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8388c-0502-b1d6-1a4b-0303c5b5335b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fd5ce2ff-2e33-4da7-bb38-4d676c3346fa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8388c-0502-b1d6-1a4b-0303c5b5335b?request_guid=fd5ce2ff-2e33-4da7-bb38-4d676c3346fa HTTP/1.1" 200 1677 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8388c-0502-b1d6-1a4b-0303c5b5335b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: be575b74-905f-45ec-90e5-07b76267bd88 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8388c-0502-b1d6-1a4b-0303c5b5335b?request_guid=be575b74-905f-45ec-90e5-07b76267bd88 HTTP/1.1" 200 1676 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8388c-0502-b1d6-1a4b-0303c5b5335b'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 87fa0cd7-825a-421f-b569-415c4146969a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8388c-0502-b1d6-1a4b-0303c5b5335b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8388c-0502-b1d6-1a4b-0303c5b5335b'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 40963b2d-6a95-4bff-a9fa-3e8b26931719 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=87fa0cd7-825a-421f-b569-415c4146969a&request_guid=40963b2d-6a95-4bff-a9fa-3e8b26931719 HTTP/1.1" 200 2284 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8388c-0502-af26-1a4b-0303c5b52503 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8388c-0502-af26-1a4b-0303c5b52503 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 749.3s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=95ea683e-f55b-4f2b-bdec-016ff52d0f8b +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 733eee76-b090-4bc7-afae-9fd907ae8f58 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=95ea683e-f55b-4f2b-bdec-016ff52d0f8b&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=733eee76-b090-4bc7-afae-9fd907ae8f58 HTTP/1.1" 200 1548 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: b4fccd74-8987-499f-9715-10f65c5512f5 +DEBUG:snowflake.connector.cursor:running query [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3babd3ef-6874-4988-bdb3-bd3b49825cb5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b4fccd74-8987-499f-9715-10f65c5512f5&request_guid=3babd3ef-6874-4988-bdb3-bd3b49825cb5 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83899-0502-b1d6-1a4b-0303c5b8b423 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83899-0502-b1d6-1a4b-0303c5b8b423 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=55 +INFO:snowflake.connector.cursor:Number of results in first chunk: 243 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83899-0502-b1d6-1a4b-0303c5b8b423' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bd45c663-8fb9-49db-b2db-a670bd824e6d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83899-0502-b1d6-1a4b-0303c5b8b423?request_guid=bd45c663-8fb9-49db-b2db-a670bd824e6d HTTP/1.1" 200 2158 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83899-0502-b1d6-1a4b-0303c5b8b423' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: afe4d220-0eae-499f-9bef-540b9fee89de +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83899-0502-b1d6-1a4b-0303c5b8b423?request_guid=afe4d220-0eae-499f-9bef-540b9fee89de HTTP/1.1" 200 2158 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83899-0502-b1d6-1a4b-0303c5b8b423'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 58f75005-2194-49ed-8f33-d96b9f2b66ae +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83899-0502-b1d6-1a4b-0303c5b8b423'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83899-0502-b1d6-1a4b-0303c5b8b423'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e1d986e6-756a-4ba1-8533-39c47a93e642 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=58f75005-2194-49ed-8f33-d96b9f2b66ae&request_guid=e1d986e6-756a-4ba1-8533-39c47a93e642 HTTP/1.1" 200 4885 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83899-0502-b1d6-1a4b-0303c5b8b4db +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83899-0502-b1d6-1a4b-0303c5b8b4db +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=56 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_0_7 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_1_7 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_2_3 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_2_4 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_2_5 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_2_6 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_3_0 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_3_4 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_3_5 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_4_4 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_4_6 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_5_0 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_5_1 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_5_2 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_5_3 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_5_4 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_6_0 +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_6_1 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_6_2 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_7_0 +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_7_1 +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_7_6 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=zYmcPo%2FPueHku54it%2BfRKJjRiiA%3D HTTP/1.1" 200 463557 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=OUN68Wx3a24fDd9ipOZvfq6guq0%3D HTTP/1.1" 200 261275 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=mVR8HdTcKbkxmWEzPcUXZDccSMI%3D HTTP/1.1" 200 34812 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=k9eWk8Q58T6QHnPYvkA1OTXS2pA%3D HTTP/1.1" 200 132762 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=98L8cGoijZp8PfXMpYObXoQ1jcQ%3D HTTP/1.1" 200 962955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=954jYjilwTtwQ0NFC2VFlCk%2F9PM%3D HTTP/1.1" 200 1755756 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=oPZn%2Boas0oVSQHKf0BIM27xO0d0%3D HTTP/1.1" 200 3657737 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=VLsBrWHLLDUXntOR3A5ZRp4Z04Y%3D HTTP/1.1" 200 780103 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=nzlaTZ7TR8hQgXlK7bdLJH%2FnXjI%3D HTTP/1.1" 200 35008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2522 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=QqznEN%2BB39QUOzL5URXqBi5lCws%3D HTTP/1.1" 200 133242 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2526 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2541 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2535 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2521 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=zs4UGYNfjCEPloWhHCZvDLqavUA%3D HTTP/1.1" 200 263308 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2518 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2541 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2527 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2536 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2522 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2531 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=XwbjGdHnAAQUUw9O00hxqhg%2FYSQ%3D HTTP/1.1" 200 465194 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 305 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=pUHkr28F8LCDG7OrrGCkASeCsrY%3D HTTP/1.1" 200 966909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=ABxxINFpqbOTfc83DTaOBmO6fx4%3D HTTP/1.1" 200 1753330 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=suGFkqIQFVyK%2BCBnHQqDBfLiYpY%3D HTTP/1.1" 200 3512578 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=mSXz73dMyVK9iJXQW%2FR6LVlSwg4%3D HTTP/1.1" 200 506386 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 2 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1980 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=IHNeLO6byPCIInkr44Ewp3rz3r4%3D HTTP/1.1" 200 35094 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1981 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2523 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=6aFsYQlEtTfAz7D6ukYeeoGuJBk%3D HTTP/1.1" 200 133347 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2527 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2542 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2540 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2524 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2519 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2533 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=0oJqbmo3qOEFcc8D5hF2U6%2BA51c%3D HTTP/1.1" 200 264474 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2538 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2514 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2540 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2537 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 2, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2524 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=zavVZxa8w7cTDGU0IDzkRLNC%2FPo%3D HTTP/1.1" 200 467279 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1138 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=4SeY3dvE17yFrM3msuIyZIyA5uU%3D HTTP/1.1" 200 967013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=w39r%2BUu0a7yjQLh69K81CVDNXOM%3D HTTP/1.1" 200 1759307 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=eBkrLsVlmuZfCYlx4bTCBQ%2BQrpQ%3D HTTP/1.1" 200 2209742 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=llJF4hfxxjx9bD3wwFlCh%2FwnOI0%3D HTTP/1.1" 200 33980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=nuJPhe5tP4RxY2ZtfR8yvFAehHg%3D HTTP/1.1" 200 127436 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1983 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2518 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=%2FakzdYxGZogngFEyC3O2cko%2B5yg%3D HTTP/1.1" 200 255560 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2524 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2538 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2516 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2516 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=SBtJTzYe4wVwJ6YWUc8FCzs%2FI%2B8%3D HTTP/1.1" 200 456036 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2525 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2536 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 681 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 247 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 246 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=pHVPa5DMWOd7i%2F4ZJXL8q0e7Frg%3D HTTP/1.1" 200 954251 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 492 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=WG%2B1nadFgRqtKclbPpBRhzmdtzE%3D HTTP/1.1" 200 44566 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 495 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 495 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=CpGef8tAEwYOiD%2FoHNpO29kle5g%3D HTTP/1.1" 200 35006 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 989 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=oWXppL8IRQOcKRRT6iR9PTDnT0A%3D HTTP/1.1" 200 133370 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 991 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=5kvC14fkqYRkdnBGZynKUg1idgg%3D HTTP/1.1" 200 261716 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 326 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_4 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=hJgzOC%2B1dgUjGOazEpoawPPuCdM%3D HTTP/1.1" 200 466980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=bznmRSJSHQoTquwic5WWvtIY8LQ%3D HTTP/1.1" 200 969208 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=3lQzJ%2FK1hiCpCmx8WWxMyrv6E5M%3D HTTP/1.1" 200 1755301 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=Rt5uMqoVwo1jMxK%2F0L6bKQQ91O0%3D HTTP/1.1" 200 137296 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 989 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=MSNPAi2BvZy%2Fmro7WEl%2B6FDRRaM%3D HTTP/1.1" 200 33511 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 990 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 989 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=jqrd9HzLOfE76%2FGUs4QWATBJehk%3D HTTP/1.1" 200 128680 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2524 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=DDdXOK0LXsuU3GFaKBSck04Ij2A%3D HTTP/1.1" 200 255977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2529 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2540 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2526 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1015 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_4 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 249 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=rxOUwjTYkrXeE5Oet%2BSv17%2By1S8%3D HTTP/1.1" 200 459576 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 249 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=2Qq4bJhgoju3o9wTKTeQ3TrgvX0%3D HTTP/1.1" 200 1747873 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_6 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=P6iO%2FqngYVCJE1UNi9xZ5toFcCU%3D HTTP/1.1" 200 1109252 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 497 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=x4qxaAdVb7Wu5szrHoW6NLi1Kro%3D HTTP/1.1" 200 976353 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 498 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=y%2Beefk8PX1x0Pd5K5zdMRUC0%2FuI%3D HTTP/1.1" 200 35041 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 995 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1977 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=CKVVzTXj6%2BeFYO9GFQutsuQEh0U%3D HTTP/1.1" 200 133495 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1985 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1987 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 41 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 42 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 42 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2541 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=I0%2BlUaBO4CIP09SzeGMWYuwSQ%2Bk%3D HTTP/1.1" 200 263952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2525 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2527 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2517 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2539 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 42 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 43 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 43 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2526 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_3 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2539 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=hnxu9Hyf5y0Udaawma%2BMQIPNXiI%3D HTTP/1.1" 200 467674 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1893 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 43 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 44 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 44 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 44 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 45 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 45 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 45 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 46 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 46 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=qEinrrHFta6dgc%2FiK%2FoIC4UQNsQ%3D HTTP/1.1" 200 968196 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=Rr1x%2FsSYyySGPp5vgHnwdR08f0w%3D HTTP/1.1" 200 90395 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 495 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 46 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 47 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=B5XyWhkC92CkNMp1apaPJUUMy6A%3D HTTP/1.1" 200 35165 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 47 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 989 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=8WePpykZOrYL5cFAPCTDRvoUFvs%3D HTTP/1.1" 200 133887 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 990 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 47 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 48 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 48 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_2 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1981 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=RHnciAb%2FewkEp6FgkterZ9B%2FL7s%3D HTTP/1.1" 200 263286 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 48 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 49 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 49 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 662 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 49 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 50 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 50 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 50 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 51 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 51 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=9QiftU5TyXLbUIIsa1uxDXXsFHA%3D HTTP/1.1" 200 465199 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=Yb09pboaJTNZHVTNynP2viCZtJA%3D HTTP/1.1" 200 963971 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 51 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 52 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 52 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=Y7P5IS0AOKD%2FspTNRmpvhrM9u2I%3D HTTP/1.1" 200 1745961 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 52 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 53 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 53 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668126807&Signature=I4MZPEVIVImABrO5aPTWRAmTYgw%3D HTTP/1.1" 200 2231250 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 53 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 54 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 54 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 54 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 55 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 55 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2522 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2546 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2536 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2522 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 55 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 56 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 56 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2525 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2539 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2527 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 962 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 56 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1fe8469d-c3ae-4158-8a3d-0e93aa96288f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=1fe8469d-c3ae-4158-8a3d-0e93aa96288f HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 17.32s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 17.33s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 17.33s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=ac59776b-cabe-4eac-bd42-cd698ad5725e +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 81e8e5fd-7683-4959-a6ca-509583e06f9d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1727772694448 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1727772694448 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1727772996416 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1727772996416 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1727772996416 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1727772996416 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1727772694448 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1727772694448 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=ac59776b-cabe-4eac-bd42-cd698ad5725e&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=81e8e5fd-7683-4959-a6ca-509583e06f9d HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=1385da84-7273-4dbd-81c7-7cda1c7bff50 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 68c028fe-1f30-4779-a747-64758ebbd91f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=1385da84-7273-4dbd-81c7-7cda1c7bff50&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=68c028fe-1f30-4779-a747-64758ebbd91f HTTP/1.1" 200 1547 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00628s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: e5e805ee-19ca-4197-aa09-51a6326fdbae +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7c5df1a7-ad66-4533-90cb-299970def5a0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e5e805ee-19ca-4197-aa09-51a6326fdbae&request_guid=7c5df1a7-ad66-4533-90cb-299970def5a0 HTTP/1.1" 200 2278 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8389e-0502-ae87-1a4b-0303c5ba10df +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8389e-0502-ae87-1a4b-0303c5ba10df +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8389e-0502-ae87-1a4b-0303c5ba10df' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: aefd4b75-0d7c-4c8a-8413-93d2f762d65d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8389e-0502-ae87-1a4b-0303c5ba10df?request_guid=aefd4b75-0d7c-4c8a-8413-93d2f762d65d HTTP/1.1" 200 1853 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8389e-0502-ae87-1a4b-0303c5ba10df' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9e669251-b5e5-4eb9-82c0-aaeed1ccff36 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8389e-0502-ae87-1a4b-0303c5ba10df?request_guid=9e669251-b5e5-4eb9-82c0-aaeed1ccff36 HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8389e-0502-ae87-1a4b-0303c5ba10df'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 9bdeee84-e0ec-4ef8-9879-6e916f1c6a2f +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8389e-0502-ae87-1a4b-0303c5ba10df'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8389e-0502-ae87-1a4b-0303c5ba10df'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7c93a0ab-75a6-4f2b-b575-aa8eef63ac92 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=9bdeee84-e0ec-4ef8-9879-6e916f1c6a2f&request_guid=7c93a0ab-75a6-4f2b-b575-aa8eef63ac92 HTTP/1.1" 200 2279 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8389e-0502-ae87-1a4b-0303c5ba112b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8389e-0502-ae87-1a4b-0303c5ba112b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 22ee9424-c50d-46c1-8757-e59014f0089d +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: be89132b-e208-4461-90e1-5b63604b01f4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=22ee9424-c50d-46c1-8757-e59014f0089d&request_guid=be89132b-e208-4461-90e1-5b63604b01f4 HTTP/1.1" 200 1800 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8389e-0502-ae87-1a4b-0303c5ba114f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8389e-0502-ae87-1a4b-0303c5ba114f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8389e-0502-ae87-1a4b-0303c5ba114f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 24badff7-56fe-42b9-927d-f91f20fb6d5b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8389e-0502-ae87-1a4b-0303c5ba114f?request_guid=24badff7-56fe-42b9-927d-f91f20fb6d5b HTTP/1.1" 200 2175 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8389e-0502-ae87-1a4b-0303c5ba114f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 274ba6ec-ff59-4596-8860-e8b043aaf7cb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8389e-0502-ae87-1a4b-0303c5ba114f?request_guid=274ba6ec-ff59-4596-8860-e8b043aaf7cb HTTP/1.1" 200 2175 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8389e-0502-ae87-1a4b-0303c5ba114f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 13f708c5-3347-42f1-91f6-74eb2bf56a8c +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8389e-0502-ae87-1a4b-0303c5ba114f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8389e-0502-ae87-1a4b-0303c5ba114f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b0c6caf3-a60d-4e05-8e02-a795ec7585d7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=13f708c5-3347-42f1-91f6-74eb2bf56a8c&request_guid=b0c6caf3-a60d-4e05-8e02-a795ec7585d7 HTTP/1.1" 200 1801 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8389e-0502-ae87-1a4b-0303c5ba119f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8389e-0502-ae87-1a4b-0303c5ba119f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: a498a889-10e7-4c4e-a150-aaaf929c556b +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 279f37b2-c4fa-45d1-be9d-58d58f8278a1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a498a889-10e7-4c4e-a150-aaaf929c556b&request_guid=279f37b2-c4fa-45d1-be9d-58d58f8278a1 HTTP/1.1" 200 2281 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8389e-0502-b0de-1a4b-0303c5ba206f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8389e-0502-b0de-1a4b-0303c5ba206f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8389e-0502-b0de-1a4b-0303c5ba206f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9fda555d-da9d-44bb-9572-d6e4234c0f21 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8389e-0502-b0de-1a4b-0303c5ba206f?request_guid=9fda555d-da9d-44bb-9572-d6e4234c0f21 HTTP/1.1" 200 1677 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8389e-0502-b0de-1a4b-0303c5ba206f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1a16f916-de3a-46e6-8afe-d7a722c0ad2d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8389e-0502-b0de-1a4b-0303c5ba206f?request_guid=1a16f916-de3a-46e6-8afe-d7a722c0ad2d HTTP/1.1" 200 1677 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8389e-0502-b0de-1a4b-0303c5ba206f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 7c4ed68e-fa53-4005-964f-5e4674fa3ec1 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8389e-0502-b0de-1a4b-0303c5ba206f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8389e-0502-b0de-1a4b-0303c5ba206f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 52ba0f6c-7727-41fd-9672-42d6b61cc240 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7c4ed68e-fa53-4005-964f-5e4674fa3ec1&request_guid=52ba0f6c-7727-41fd-9672-42d6b61cc240 HTTP/1.1" 200 2285 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8389e-0502-afee-1a4b-0303c5ba0cc7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8389e-0502-afee-1a4b-0303c5ba0cc7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 15.62s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=3942d5f3-58c7-47b7-9138-67222bb0b108 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c09e3832-ca0b-4efa-87fb-3a310c5f9673 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=3942d5f3-58c7-47b7-9138-67222bb0b108&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=c09e3832-ca0b-4efa-87fb-3a310c5f9673 HTTP/1.1" 200 1545 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 4c0ca68b-07b0-4745-9126-db10dd5ea297 +DEBUG:snowflake.connector.cursor:running query [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d6ec162d-ebe4-4266-b0b6-4b10d1570130 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4c0ca68b-07b0-4745-9126-db10dd5ea297&request_guid=d6ec162d-ebe4-4266-b0b6-4b10d1570130 HTTP/1.1" 200 4894 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8389f-0502-af26-1a4b-0303c5ba3227 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8389f-0502-af26-1a4b-0303c5ba3227 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=56 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8389f-0502-af26-1a4b-0303c5ba3227' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bf10cf53-d14a-4a35-9940-c6b22a21c04b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8389f-0502-af26-1a4b-0303c5ba3227?request_guid=bf10cf53-d14a-4a35-9940-c6b22a21c04b HTTP/1.1" 200 1977 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8389f-0502-af26-1a4b-0303c5ba3227' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a507d94d-fca3-45b1-a350-21cc0baf2e6f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8389f-0502-af26-1a4b-0303c5ba3227?request_guid=a507d94d-fca3-45b1-a350-21cc0baf2e6f HTTP/1.1" 200 1977 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8389f-0502-af26-1a4b-0303c5ba3227'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: d3453be3-eda6-4842-8102-a95b5fabc8c1 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8389f-0502-af26-1a4b-0303c5ba3227'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8389f-0502-af26-1a4b-0303c5ba3227'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: deb4b0d7-c702-4f0f-8cdf-3596e9298412 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d3453be3-eda6-4842-8102-a95b5fabc8c1&request_guid=deb4b0d7-c702-4f0f-8cdf-3596e9298412 HTTP/1.1" 200 4895 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8389f-0502-ae87-1a4b-0303c5ba148f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8389f-0502-ae87-1a4b-0303c5ba148f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=56 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_0_7 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_1_7 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_2_3 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_2_4 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_2_5 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_2_6 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_3_0 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_3_4 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_3_5 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_4_4 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_4_6 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_5_0 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_5_1 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_5_2 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_5_3 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_5_4 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_6_0 +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_6_1 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_6_2 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_7_0 +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_7_1 +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_7_6 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=isZ2uFy0%2Fy%2FiTEE978grehFgT0c%3D HTTP/1.1" 200 132762 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=M1N3aQuQtLHOHuP%2FxNA0YiAPsxE%3D HTTP/1.1" 200 34812 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=GWJNXpDIxLR3E5Gr6px4QvKu78I%3D HTTP/1.1" 200 261275 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=sUdSaC2YVM0Bu6iq1u%2FcE4RKyuU%3D HTTP/1.1" 200 463557 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=FVBnPki6o9jipUnUvdXrvefobtk%3D HTTP/1.1" 200 962955 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=yhb%2FbXZKJU6RMJsRt9llfk%2BLf2k%3D HTTP/1.1" 200 1755756 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_7 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=%2ByJSL6bLLDH%2Byy7d5yYqirssVxg%3D HTTP/1.1" 200 3657737 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_7 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=Fnp0ZOIDeqZuQv%2FCY9EanUdOZXw%3D HTTP/1.1" 200 780103 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=3MpBvDIevtBH102%2BLvIevN2Fg7Y%3D HTTP/1.1" 200 35008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2522 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2526 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=LzFq%2FIe0ZRjSku84VC6tWVT00j8%3D HTTP/1.1" 200 133242 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2541 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2535 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2521 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2532 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2518 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=TAGCEc72rhrvAr8EGsBaUpexPFU%3D HTTP/1.1" 200 263308 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2541 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2527 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2536 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2522 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2531 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=6cyBweGPtiJlmcqWbxQvKsuR%2FQA%3D HTTP/1.1" 200 465194 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 305 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=nd7W4MaQGtTlN0CWRTip%2BLTHLeE%3D HTTP/1.1" 200 966909 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=ZDllh0YjwuaUUWdTTGnFGn0RgyA%3D HTTP/1.1" 200 1753330 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_7 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=sH6pNurC4DUGDcd8gwzdeo8ODI4%3D HTTP/1.1" 200 3512578 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=N4xiRkKbnV%2FPhveP82TgikhS448%3D HTTP/1.1" 200 506386 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=zbsd2bfB1D63x9sLtLl69MQsjgk%3D HTTP/1.1" 200 35094 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1981 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 2 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2523 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=GVV%2BfJXMe0Cu9zlDBqxfU9np3Bo%3D HTTP/1.1" 200 133347 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2527 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2542 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2540 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2524 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=s68sQ2Rsvwgb9vfo4yFpDnhPH8M%3D HTTP/1.1" 200 264474 +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2519 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2533 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2538 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2514 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2540 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2537 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 2, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2524 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1138 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=6GlfTVuTWgZ3nIUgQEVwPQ3BxDc%3D HTTP/1.1" 200 467279 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=6YE6lmp9jfcL3fvner%2BdDPvIzUw%3D HTTP/1.1" 200 967013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=39GkHSBr76d7H89wovSdby%2BhJ%2B4%3D HTTP/1.1" 200 1759307 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=QAiZAtmyi3gzGfch9rFIZBd7tyg%3D HTTP/1.1" 200 2209742 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=CeXa1YkAcsxUGZXXBSssRiw0UpM%3D HTTP/1.1" 200 33980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=ujQ48eLGfxsJUg4SQCw175y%2F6k8%3D HTTP/1.1" 200 127436 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2518 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2538 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=6VT4EZqwfXUqhcshef0mSKfJ36o%3D HTTP/1.1" 200 255560 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2516 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2516 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2525 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=XBzyq%2FC3q4bPlqbktEA1YhLUxg8%3D HTTP/1.1" 200 456036 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2536 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 681 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_4 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 247 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 492 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 495 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=TNMZH7s%2BMU6s0oN8jgUZGyC4uQo%3D HTTP/1.1" 200 44566 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 495 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=jK%2Bs%2BSwKVhwm1GF5x8QKuIx35so%3D HTTP/1.1" 200 954251 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 989 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=WWRoTunJ703wFpXgvVVoPhN7wv8%3D HTTP/1.1" 200 35006 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=gtfWIpH5Wqo%2FJrJeFwQNpipNRaU%3D HTTP/1.1" 200 133370 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=45KxHiGXwD9RvrSPCHg5r3Um3Rc%3D HTTP/1.1" 200 261716 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 326 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=azR97bNeH3v0RqPhFD7ZdDQobzU%3D HTTP/1.1" 200 466980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=TUpNyvPCoarzxSP6JTxEba2axuI%3D HTTP/1.1" 200 969208 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=L63Zjg1tbT1DB4lgVkbZDwUCiyw%3D HTTP/1.1" 200 1755301 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=USN4xMtp5HKsotQlm9vZHuliVM8%3D HTTP/1.1" 200 137296 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_0 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=y%2Bm2NfeyMa65YHsE1GzRV05q3bU%3D HTTP/1.1" 200 33511 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 990 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=L8OEaSV2Is8BHVN3MVm0MOHagzA%3D HTTP/1.1" 200 128680 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2524 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2543 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2540 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=ZB%2BfHBbXe8Fn0Caf6lU0qzKfJ7A%3D HTTP/1.1" 200 255977 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2526 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1015 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 249 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 249 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=gh9jjKUm48ZZHwXZatvV5DQFsBg%3D HTTP/1.1" 200 459576 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=GIRgdzlk2I81yZZhfAEtJmaiQeQ%3D HTTP/1.1" 200 1109252 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=7oKlDFFh0g%2FzhztbmsY%2FL0Gx9mM%3D HTTP/1.1" 200 1747873 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_0 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 498 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=NZETaIjhxt054erupiLpXunKl30%3D HTTP/1.1" 200 976353 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=Knb4IfqzgjTjVICgGFroqM2UV10%3D HTTP/1.1" 200 35041 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 995 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1977 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1985 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=UiBHgA%2FSX9%2B565hV%2B0WX9B3yKq8%3D HTTP/1.1" 200 133495 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1987 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 41 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 42 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 42 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2541 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=6kEgBX1ISuuLP0e8bUqXY7pwb1A%3D HTTP/1.1" 200 263952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2525 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2527 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2517 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2539 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 42 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 43 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_3 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 43 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2526 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=L82qQXynOryyvbeIWnjEi7k8K3M%3D HTTP/1.1" 200 467674 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2539 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1893 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 43 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 44 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 44 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 44 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 45 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 45 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 45 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 46 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 46 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=fiKKB6isc5dYgohe2nDckNn9eoY%3D HTTP/1.1" 200 968196 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 495 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=aHZJ9QUK16ZN7K3J%2BKB0ucKSdNM%3D HTTP/1.1" 200 90395 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 46 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 47 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 47 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 989 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=3mReKzpcbvJxMMTSvgaL44BXOfQ%3D HTTP/1.1" 200 35165 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=7THr9bYLe%2FHqplMdeU6vFbfEvmw%3D HTTP/1.1" 200 133887 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 47 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 48 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 48 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=wLOYrWTtd6Il0UgKfGgBWKQKZuc%3D HTTP/1.1" 200 263286 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 48 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 49 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 49 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 662 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 49 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 50 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 50 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 50 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 51 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 51 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 51 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 52 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 52 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=v6sgFr2zltUtnh1PSUinOLt%2BI9U%3D HTTP/1.1" 200 465199 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=GRU59Hb%2FTTa0g6DVWax%2Fi146Scc%3D HTTP/1.1" 200 963971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=mo3ebZplNaH1tEhTFpJPKjdUv2Y%3D HTTP/1.1" 200 1745961 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 52 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 53 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 53 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127151&Signature=OThudIE0qaXTMY1pNgjJav%2B1tz8%3D HTTP/1.1" 200 2231250 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 992 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 53 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 54 +DEBUG:snowflake.connector.result_set:user began consuming result batch 54 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 54 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 55 +DEBUG:snowflake.connector.result_set:user began consuming result batch 55 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2522 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2546 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2536 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2522 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 55 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 56 +DEBUG:snowflake.connector.result_set:user began consuming result batch 56 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2525 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2539 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2527 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 962 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 56 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 85024164-c553-49cc-89cf-915b4f39fdb7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=85024164-c553-49cc-89cf-915b4f39fdb7 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=2842d9f2-7110-4d9d-a55c-cbca66a0f8b0 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 02f9634e-d112-4e49-9083-90e3bc8fd26d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=2842d9f2-7110-4d9d-a55c-cbca66a0f8b0&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=02f9634e-d112-4e49-9083-90e3bc8fd26d HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 1824d034-af37-456f-afac-dad713fb42d1 +DEBUG:snowflake.connector.cursor:running query [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8fe59253-9d6d-4a42-9ecd-27672c544182 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1824d034-af37-456f-afac-dad713fb42d1&request_guid=8fe59253-9d6d-4a42-9ecd-27672c544182 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838a1-0502-af26-1a4b-0303c5bad13b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838a1-0502-af26-1a4b-0303c5bad13b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=2 +INFO:snowflake.connector.cursor:Number of results in first chunk: 246 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838a1-0502-af26-1a4b-0303c5bad13b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f3d0f3ca-a789-4c05-8cc3-a2ecd48e2d33 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838a1-0502-af26-1a4b-0303c5bad13b?request_guid=f3d0f3ca-a789-4c05-8cc3-a2ecd48e2d33 HTTP/1.1" 200 2134 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838a1-0502-af26-1a4b-0303c5bad13b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d26be1df-10f7-4d79-b917-e3e1f5c5c597 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838a1-0502-af26-1a4b-0303c5bad13b?request_guid=d26be1df-10f7-4d79-b917-e3e1f5c5c597 HTTP/1.1" 200 2135 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838a1-0502-af26-1a4b-0303c5bad13b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: a30a628c-6d07-48da-83f5-21dadab96b2e +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838a1-0502-af26-1a4b-0303c5bad13b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838a1-0502-af26-1a4b-0303c5bad13b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f7f4472b-67ea-48f2-9ff2-8460f9cf2110 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a30a628c-6d07-48da-83f5-21dadab96b2e&request_guid=f7f4472b-67ea-48f2-9ff2-8460f9cf2110 HTTP/1.1" 200 2298 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838a1-0502-afee-1a4b-0303c5baaccb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838a1-0502-afee-1a4b-0303c5baaccb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127305&Signature=8k5IY9zfLcXibcMQkvjAtxj2TSo%3D HTTP/1.1" 200 39942 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127305&Signature=VBUxXsL%2Bj4tCLZE1GQFWXikO9%2F8%3D HTTP/1.1" 200 137002 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668127305&Signature=sIedkA1hrZTpTutbDL5jME%2BTKrE%3D HTTP/1.1" 200 36830 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 246 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 246 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 282 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.telemetry:Sending 1 logs to telemetry. Data is {'logs': [{'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_imported_packages', 'value': "{'code', 'zipimport', 'copyreg', 'jwt', 'greenlet', 'unicodedata', 'glob', 'contextvars', 'argparse', 'binascii', 'operator', 'cryptography', 'shutil', 'posixpath', 'asn1crypto', 'pydev_ipython', 're', 'socket', 'selectors', 'pydoc', 'copy', 'six', 'genericpath', 'zipfile', 'psycopg2', 'msvcrt', 'typing', 'urllib', 'site', 'gzip', 'uu', 'typing_extensions', 'itertools', 'reprlib', 'token', 'shlex', 'traceback', 'mmap', 'configparser', 'flask', 'locale', 'pydevd_file_utils', 'wtforms', 'pprint', 'sysconfig', 'math', 'secrets', 'hashlib', 'werkzeug', 'pandas', 'fconfig', 'config', 'weakref', 'builtins', 'debugpy', 'jinja2', 'quopri', 'logging', 'signal', 'colorama', 'pathlib', 'contextlib', 'timeit', 'abc', 'csv', 'sre_compile', 'numpy', 'stringprep', 'socketserver', 'pycparser', 'random', 'http', 'pickle', 'concurrent', 'getpass', 'decimal', 'requests', 'base64', 'asyncio', 'OpenSSL', 'select', 'function', 'dateutil', 'tempfile', 'alembic', 'filelock', 'gettext', 'cffi', 'ntpath', 'gc', 'sqlite3', 'cmath', 'ctypes', 'pydevd_plugins', 'struct', 'tokenize', 'threading', 'heapq', 'difflib', 'numbers', 'mako', 'functools', 'keyword', 'textwrap', 'nturl2path', 'queue', 'Cryptodome', 'itsdangerous', 'dataclasses', 'flask_sqlalchemy', 'os', 'xml', 'zlib', 'click', 'ipaddress', 'winreg', 'snowflake', 'flask_wtf', 'errno', 'xmlrpc', 'calendar', 'inspect', 'datetime', 'charset_normalizer', 'hmac', 'nt', 'sre_parse', 'cachelib', 'dis', 'platform', 'linecache', 'pydevd_tracing', 'markupsafe', 'overrides', 'collections', 'flask_migrate', 'sql', 'encodings', 'sre_constants', 'io', 'pyexpat', 'sys', 'fnmatch', 'plistlib', 'uuid', 'ssl', 'importlib', 'oscrypto', 'pkg_resources', 'email', 'sqlalchemy', 'fractions', 'common', 'certifi', 'mimetypes', 'codecs', 'opcode', 'cython_runtime', 'lzma', 'time', 'stat', 'bisect', 'pydevconsole', 'types', 'string', 'marshal', 'subprocess', 'json', 'pytz', 'enum', 'codeop', 'warnings', 'html', 'bz2', 'ast', 'webbrowser', 'urllib3', 'pydevd', 'atexit', 'idna', 'imp', 'flask_session', 'pkgutil'}"}, 'timestamp': '1668105530501'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8389e-0502-ae87-1a4b-0303c5ba10df', 'value': -642}, 'timestamp': '1668105532550'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8389e-0502-ae87-1a4b-0303c5ba112b', 'value': -644}, 'timestamp': '1668105532910'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a8389e-0502-ae87-1a4b-0303c5ba112b', 'value': 5}, 'timestamp': '1668105532915'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8389e-0502-ae87-1a4b-0303c5ba114f', 'value': -644}, 'timestamp': '1668105533662'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8389e-0502-ae87-1a4b-0303c5ba119f', 'value': -643}, 'timestamp': '1668105534005'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a8389e-0502-ae87-1a4b-0303c5ba119f', 'value': 3}, 'timestamp': '1668105534008'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8389e-0502-b0de-1a4b-0303c5ba206f', 'value': -643}, 'timestamp': '1668105534105'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8389e-0502-afee-1a4b-0303c5ba0cc7', 'value': -641}, 'timestamp': '1668105534484'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a8389e-0502-afee-1a4b-0303c5ba0cc7', 'value': 3}, 'timestamp': '1668105534487'}]}. +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ed4b92ae-06fa-4571-b8d9-4d2b2e93b64e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /telemetry/send?request_guid=ed4b92ae-06fa-4571-b8d9-4d2b2e93b64e HTTP/1.1" 200 86 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.telemetry:Successfully uploading metrics to telemetry. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2e7bbe83-26c4-4013-926b-ff6854c67ee3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=2e7bbe83-26c4-4013-926b-ff6854c67ee3 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.telemetry:Sending 1 logs to telemetry. Data is {'logs': [{'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_imported_packages', 'value': "{'code', 'zipimport', 'copyreg', 'jwt', 'greenlet', 'unicodedata', 'glob', 'contextvars', 'argparse', 'binascii', 'operator', 'cryptography', 'shutil', 'posixpath', 'asn1crypto', 'pydev_ipython', 're', 'socket', 'selectors', 'pydoc', 'copy', 'six', 'genericpath', 'zipfile', 'psycopg2', 'msvcrt', 'typing', 'urllib', 'site', 'gzip', 'uu', 'typing_extensions', 'itertools', 'reprlib', 'token', 'shlex', 'traceback', 'mmap', 'configparser', 'flask', 'locale', 'pydevd_file_utils', 'wtforms', 'pprint', 'sysconfig', 'math', 'secrets', 'hashlib', 'werkzeug', 'pandas', 'fconfig', 'config', 'weakref', 'builtins', 'debugpy', 'jinja2', 'quopri', 'logging', 'signal', 'colorama', 'pathlib', 'contextlib', 'timeit', 'abc', 'csv', 'sre_compile', 'numpy', 'stringprep', 'socketserver', 'pycparser', 'random', 'http', 'pickle', 'concurrent', 'getpass', 'decimal', 'requests', 'base64', 'asyncio', 'OpenSSL', 'select', 'function', 'dateutil', 'tempfile', 'alembic', 'filelock', 'gettext', 'cffi', 'ntpath', 'gc', 'sqlite3', 'cmath', 'ctypes', 'pydevd_plugins', 'struct', 'tokenize', 'threading', 'heapq', 'difflib', 'numbers', 'mako', 'functools', 'keyword', 'textwrap', 'nturl2path', 'queue', 'Cryptodome', 'itsdangerous', 'dataclasses', 'flask_sqlalchemy', 'os', 'xml', 'zlib', 'click', 'ipaddress', 'winreg', 'snowflake', 'flask_wtf', 'errno', 'xmlrpc', 'calendar', 'inspect', 'datetime', 'charset_normalizer', 'hmac', 'nt', 'sre_parse', 'cachelib', 'dis', 'platform', 'linecache', 'pydevd_tracing', 'markupsafe', 'overrides', 'collections', 'flask_migrate', 'sql', 'encodings', 'sre_constants', 'io', 'pyexpat', 'sys', 'fnmatch', 'plistlib', 'uuid', 'ssl', 'importlib', 'oscrypto', 'pkg_resources', 'email', 'sqlalchemy', 'fractions', 'common', 'certifi', 'mimetypes', 'codecs', 'opcode', 'cython_runtime', 'lzma', 'time', 'stat', 'bisect', 'pydevconsole', 'types', 'string', 'marshal', 'subprocess', 'json', 'pytz', 'enum', 'codeop', 'warnings', 'html', 'bz2', 'ast', 'webbrowser', 'urllib3', 'pydevd', 'atexit', 'idna', 'imp', 'flask_session', 'pkgutil'}"}, 'timestamp': '1668105531913'}]}. +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b4134e23-03a0-450d-a25d-b6dbed5ac0b3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /telemetry/send?request_guid=b4134e23-03a0-450d-a25d-b6dbed5ac0b3 HTTP/1.1" 200 86 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.telemetry:Successfully uploading metrics to telemetry. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 22df6856-bc09-4355-887b-694a90b5f370 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=22df6856-bc09-4355-887b-694a90b5f370 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:41:51] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&submit=Submit HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\main.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 11.67s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 11.68s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 11.68s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=73428f08-8efe-47dd-97b9-3573bb88e92f +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 830c626f-5766-4f99-b3d1-4dbbeeada4c4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2201622927136 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2201622927136 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2201623245488 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2201623245488 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2201623245488 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2201623245488 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2201622927136 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2201622927136 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=73428f08-8efe-47dd-97b9-3573bb88e92f&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=830c626f-5766-4f99-b3d1-4dbbeeada4c4 HTTP/1.1" 200 1544 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=63f35886-ad82-49b0-8981-b48464f4e14a +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a742b848-9cdc-42dc-93aa-ee79c64a8dd6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=63f35886-ad82-49b0-8981-b48464f4e14a&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=a742b848-9cdc-42dc-93aa-ee79c64a8dd6 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00158s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 3bf14f25-c307-4c0e-88cf-cc48c81b11f5 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cca0fd48-7649-4fed-ad63-5a92304d1ffe +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3bf14f25-c307-4c0e-88cf-cc48c81b11f5&request_guid=cca0fd48-7649-4fed-ad63-5a92304d1ffe HTTP/1.1" 200 2279 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838af-0502-ae87-1a4b-0303c5be9463 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838af-0502-ae87-1a4b-0303c5be9463 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838af-0502-ae87-1a4b-0303c5be9463' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: aa321d16-7557-4838-8887-7a07f4310052 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838af-0502-ae87-1a4b-0303c5be9463?request_guid=aa321d16-7557-4838-8887-7a07f4310052 HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838af-0502-ae87-1a4b-0303c5be9463' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 25d5914e-1068-46c8-852d-aa9cffee7f0d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838af-0502-ae87-1a4b-0303c5be9463?request_guid=25d5914e-1068-46c8-852d-aa9cffee7f0d HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838af-0502-ae87-1a4b-0303c5be9463'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: f18406f6-e00d-4600-86f6-90b9f378bbf1 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838af-0502-ae87-1a4b-0303c5be9463'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838af-0502-ae87-1a4b-0303c5be9463'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1f966a99-e011-46ec-8541-6ce1be1947c7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f18406f6-e00d-4600-86f6-90b9f378bbf1&request_guid=1f966a99-e011-46ec-8541-6ce1be1947c7 HTTP/1.1" 200 2278 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838af-0502-afee-1a4b-0303c5beb143 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838af-0502-afee-1a4b-0303c5beb143 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 041b2f23-fc86-4e6e-8154-065a0c5fbdb5 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 57d3c4eb-4cfe-4508-9b2e-5c7da7e58de5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=041b2f23-fc86-4e6e-8154-065a0c5fbdb5&request_guid=57d3c4eb-4cfe-4508-9b2e-5c7da7e58de5 HTTP/1.1" 200 1799 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838af-0502-b0de-1a4b-0303c5be859f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838af-0502-b0de-1a4b-0303c5be859f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838af-0502-b0de-1a4b-0303c5be859f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0ccbb50d-f6af-4587-9382-01fb56657a1c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838af-0502-b0de-1a4b-0303c5be859f?request_guid=0ccbb50d-f6af-4587-9382-01fb56657a1c HTTP/1.1" 200 2175 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838af-0502-b0de-1a4b-0303c5be859f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4df0105c-aaf2-40ed-a060-6bc7ca59d7e5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838af-0502-b0de-1a4b-0303c5be859f?request_guid=4df0105c-aaf2-40ed-a060-6bc7ca59d7e5 HTTP/1.1" 200 2175 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838af-0502-b0de-1a4b-0303c5be859f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 9432d37a-1f7e-4bbf-b8b2-c7b3fa05cdbf +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838af-0502-b0de-1a4b-0303c5be859f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838af-0502-b0de-1a4b-0303c5be859f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 031bc2a7-4366-4946-82cf-2257ef0afbba +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=9432d37a-1f7e-4bbf-b8b2-c7b3fa05cdbf&request_guid=031bc2a7-4366-4946-82cf-2257ef0afbba HTTP/1.1" 200 1798 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838af-0502-b0de-1a4b-0303c5be85f7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838af-0502-b0de-1a4b-0303c5be85f7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: b7a4586f-569d-474a-8bf5-db1f61c6f084 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7783b834-0921-4086-a37c-2221745b7f41 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b7a4586f-569d-474a-8bf5-db1f61c6f084&request_guid=7783b834-0921-4086-a37c-2221745b7f41 HTTP/1.1" 200 2281 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838af-0502-b1d6-1a4b-0303c5bea2b3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838af-0502-b1d6-1a4b-0303c5bea2b3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838af-0502-b1d6-1a4b-0303c5bea2b3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6dcb4d0b-53c0-40c6-b700-6613a9cc63c2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838af-0502-b1d6-1a4b-0303c5bea2b3?request_guid=6dcb4d0b-53c0-40c6-b700-6613a9cc63c2 HTTP/1.1" 200 1674 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838af-0502-b1d6-1a4b-0303c5bea2b3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7641d313-7df4-464e-93c6-f2a360882f39 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838af-0502-b1d6-1a4b-0303c5bea2b3?request_guid=7641d313-7df4-464e-93c6-f2a360882f39 HTTP/1.1" 200 1674 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838af-0502-b1d6-1a4b-0303c5bea2b3'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: f041c1cb-260e-4d50-ac18-7d226b73e8ef +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838af-0502-b1d6-1a4b-0303c5bea2b3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838af-0502-b1d6-1a4b-0303c5bea2b3'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 824488ef-86c1-43ce-b6d7-dcc9da819087 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f041c1cb-260e-4d50-ac18-7d226b73e8ef&request_guid=824488ef-86c1-43ce-b6d7-dcc9da819087 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838af-0502-af26-1a4b-0303c5be76d3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838af-0502-af26-1a4b-0303c5be76d3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 3.145s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=fc887710-02e6-49d3-84f3-711201cd9b24 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c1cc2dc0-d0a8-4f01-ad1a-750805952c45 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=fc887710-02e6-49d3-84f3-711201cd9b24&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=c1cc2dc0-d0a8-4f01-ad1a-750805952c45 HTTP/1.1" 200 1547 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 975f3d3c-38e5-4d51-ac59-b5ed488f5d21 +DEBUG:snowflake.connector.cursor:running query [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e5426323-afef-4a21-8c91-b3ff4459c898 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=975f3d3c-38e5-4d51-ac59-b5ed488f5d21&request_guid=e5426323-afef-4a21-8c91-b3ff4459c898 HTTP/1.1" 200 4917 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838af-0502-af26-1a4b-0303c5be7713 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838af-0502-af26-1a4b-0303c5be7713 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=56 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838af-0502-af26-1a4b-0303c5be7713' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0a864742-149b-4e68-a358-447b5a22ff2c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838af-0502-af26-1a4b-0303c5be7713?request_guid=0a864742-149b-4e68-a358-447b5a22ff2c HTTP/1.1" 200 1975 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838af-0502-af26-1a4b-0303c5be7713' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e7246bb2-d63f-4778-82b6-636002cecd86 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838af-0502-af26-1a4b-0303c5be7713?request_guid=e7246bb2-d63f-4778-82b6-636002cecd86 HTTP/1.1" 200 1975 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838af-0502-af26-1a4b-0303c5be7713'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 22ed6a83-1af4-46ef-a7fd-c33c66bde859 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838af-0502-af26-1a4b-0303c5be7713'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838af-0502-af26-1a4b-0303c5be7713'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 416c902a-84f3-47a2-a4ba-915cbead860e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=22ed6a83-1af4-46ef-a7fd-c33c66bde859&request_guid=416c902a-84f3-47a2-a4ba-915cbead860e HTTP/1.1" 200 4920 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838af-0502-ae87-1a4b-0303c5be9503 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838af-0502-ae87-1a4b-0303c5be9503 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=56 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_0_7 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_1_7 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_2_3 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_2_4 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_2_5 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_2_6 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_3_0 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_3_4 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_3_5 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_4_4 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_4_6 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_5_0 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_5_1 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_5_2 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_5_3 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_5_4 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_6_0 +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_6_1 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_6_2 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_7_0 +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_7_1 +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_7_6 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=P19onOlPuL5bh0wQcsktzC3bB7I%3D HTTP/1.1" 200 34812 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=Qf0kwY1wQK7oZFM1wBBvmg8nhEA%3D HTTP/1.1" 200 261275 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=IEM5Ka%2BDe63ocVQcMZz%2BseNx8%2Fo%3D HTTP/1.1" 200 463557 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=V6bPxTPQQTGSs4uZiZjxv92H9SQ%3D HTTP/1.1" 200 132762 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=qgc3mc77uT%2FJxp7SlxAd5kI%2FjfY%3D HTTP/1.1" 200 962955 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=gfgeh9o70bfi2XWvZ8cesen1nQo%3D HTTP/1.1" 200 1755756 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_7 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=%2Fai4mrSgReQKIxz0jOlh5V90ZuY%3D HTTP/1.1" 200 3657737 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=PpkabW0G%2Bbx3D%2F2dJ2UtUy7UXtA%3D HTTP/1.1" 200 780103 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=i7Bu%2FOOPllwRIoCfBi797EfUY5k%3D HTTP/1.1" 200 35008 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2522 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=hgMu4m0cwHfT2BPox1%2BHzrItfc8%3D HTTP/1.1" 200 133242 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2526 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2541 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2535 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2521 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2532 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=NH3%2FYDbDHLqS54WkWznTQFTXOGw%3D HTTP/1.1" 200 263308 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2518 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2541 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2527 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2536 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2522 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2531 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=fjzcC48tbEXF5YFNUF8L4QztbKs%3D HTTP/1.1" 200 465194 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 305 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=MtRTXyWS%2FSNnP7aSgClmUsbbTa0%3D HTTP/1.1" 200 966909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=ym1dfZYg93Gf%2B%2B8J5Da%2FWrMcKps%3D HTTP/1.1" 200 1753330 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=eEySbZqDJ5yQwY0eaP1bklgf5PE%3D HTTP/1.1" 200 3512578 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=tRjemZxsYRpS%2Bnk3kKOJvvbv6XA%3D HTTP/1.1" 200 506386 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 2 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1980 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=vek5DSqhUqzcRCbWaUAGZdjUgZM%3D HTTP/1.1" 200 35094 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1981 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2523 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=Q3KZ4xCMktghpoIGtgdyp2%2F0NQI%3D HTTP/1.1" 200 133347 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2527 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2542 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2540 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2524 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2519 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=fAY2Ef%2BuU%2BgnUtxD0%2FWHNpVaVHw%3D HTTP/1.1" 200 264474 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2533 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2538 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2514 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2540 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2537 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 2, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1138 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=25nH6NZ0QemI69TuX4RWs0qFYAY%3D HTTP/1.1" 200 467279 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=ny%2BaIeDMdZeSP5BNmdd6wXRqXEE%3D HTTP/1.1" 200 967013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=6R97K5lPIcyZABRaVnEWrh5VUg8%3D HTTP/1.1" 200 1759307 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_0 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=Tt90EWI43yKwGhCR6hhX%2F%2FXPIXk%3D HTTP/1.1" 200 2209742 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=a28PM0TV3AG%2FYslq1DSOZWI1VRY%3D HTTP/1.1" 200 33980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 991 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1980 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=jVyYsyQKSaii5afmx3siEkyqMFA%3D HTTP/1.1" 200 127436 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2518 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=5QKwJD2UJm4ZmGT7eJ771C45lNY%3D HTTP/1.1" 200 255560 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2538 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2516 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_3 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2516 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=vMxdlk%2F6vOtsikcAr557uEF239c%3D HTTP/1.1" 200 456036 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2525 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2536 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 681 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_4 with existing session +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 247 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 492 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=qHOm5m4E8lJYjuEP69OYojARAa0%3D HTTP/1.1" 200 954251 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 495 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=r4JmtOa84oRggXoLJ1t09%2F8A%2F5Y%3D HTTP/1.1" 200 44566 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 495 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_1 with existing session +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=J4cHgy5MYi%2Bm5AvYiRgbDmdg7E4%3D HTTP/1.1" 200 35006 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 989 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 991 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=kf8%2BQPMq6v4JdntsEP91k8iiuZg%3D HTTP/1.1" 200 133370 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=suj09tTjwMyQNQiX4nLdSAHwBjQ%3D HTTP/1.1" 200 261716 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 326 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_3 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=mifUNeCvqsbK3Gp7V3DWWofJcr4%3D HTTP/1.1" 200 466980 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=pyM%2F7flYyyY2IqsY3g1KqihPDVI%3D HTTP/1.1" 200 969208 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=thfihJCa6h8BiR38xARTgHaqSu4%3D HTTP/1.1" 200 1755301 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 988 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=L1RhqiJqs4DcI%2BMBV54G3P77aIc%3D HTTP/1.1" 200 137296 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 989 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=VQQo2fJ9vS%2FBm2d1xgnWkgzo%2BVo%3D HTTP/1.1" 200 33511 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 990 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=aSe5dYl5TDpz1EqpehRDh0j7D4s%3D HTTP/1.1" 200 128680 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2529 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=uyNFpZ1EleVlQstdiY1i9XCY8FY%3D HTTP/1.1" 200 255977 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2540 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2526 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1015 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_3 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 249 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 497 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=Ybp2EECbIkP3kBPFMpbbwC%2FzooA%3D HTTP/1.1" 200 459576 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=d3A24Fn%2F2Cios3%2F95NvwmqXZbP4%3D HTTP/1.1" 200 1109252 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=cHEy%2FRlw3cQzT1MWVX6DPUbWEko%3D HTTP/1.1" 200 1747873 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 498 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=gBc9ZOZ61L9kv9DyIxe8AY2tcNQ%3D HTTP/1.1" 200 976353 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 995 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=gkdqVWE3CvwzJT1HjYi6H0jg2o0%3D HTTP/1.1" 200 35041 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1977 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=qPLDM6%2BOtgcHoUttfVtBrnfDNgc%3D HTTP/1.1" 200 133495 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1987 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 41 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 42 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 42 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2541 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=sRx2O%2Fegt01aRjEL3QI2%2Bxi2AbI%3D HTTP/1.1" 200 263952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2525 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2527 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2517 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2539 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 42 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 43 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 43 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2526 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_3 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2539 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1893 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=jyFe%2BNYjlnSPg8l59tVpdkhqw6o%3D HTTP/1.1" 200 467674 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 43 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 44 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 44 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 44 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 45 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 45 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 45 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 46 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 46 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=9c0qCoi75sFTTGEQpk%2FNDTJB3GQ%3D HTTP/1.1" 200 968196 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 495 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 46 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 47 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=1nI1RGR%2BffHN3PufDxZyoIXaSj8%3D HTTP/1.1" 200 90395 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 47 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=v4ukDS7rhkr5LOktA7qHyFTeHWI%3D HTTP/1.1" 200 35165 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 989 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 990 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=1qUjYcj0sKUeUlkv17N2A%2FKQgAU%3D HTTP/1.1" 200 133887 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 47 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 48 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 48 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=sK2p0NWNzb%2BBv8JJJp8IMi0m8l8%3D HTTP/1.1" 200 263286 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 48 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 49 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 49 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 662 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 49 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 50 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 50 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 50 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 51 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 51 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 51 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 52 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 52 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=3a2Fm6VVxh7CY5ShfS3cM%2FSF9VA%3D HTTP/1.1" 200 465199 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=2dBjDPgMosdwkPEctR8ufTfpyJg%3D HTTP/1.1" 200 963971 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=8TXxzoCdW%2FQ0OHExAOz2ah3w798%3D HTTP/1.1" 200 1745961 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 52 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 53 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128137&Signature=GzleX6VfPbg62o2WeNrwU1pAdOo%3D HTTP/1.1" 200 2231250 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 53 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 53 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 54 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 54 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 54 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 55 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 55 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2522 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2546 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2536 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2522 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 55 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 56 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 56 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2525 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2539 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2527 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 962 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 56 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 11807471-da4c-46e1-975f-898b4c757718 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=11807471-da4c-46e1-975f-898b4c757718 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.telemetry:Sending 1 logs to telemetry. Data is {'logs': [{'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_imported_packages', 'value': "{'reprlib', 'numbers', 'pyexpat', 'fnmatch', 'pydevd_tracing', 'tokenize', 'cython_runtime', 'urllib', 'quopri', 'errno', 'winreg', 'flask_sqlalchemy', 'cryptography', 'mako', 'codecs', 'mimetypes', 'typing', 'filelock', 'certifi', 'webbrowser', 'sysconfig', 'shutil', 'wtforms', 'sre_parse', 'decimal', 'jwt', 'stat', 'urllib3', 'math', 'socket', 'asn1crypto', 'alembic', 'keyword', 'locale', 'markupsafe', 'cachelib', 'imp', 'marshal', 'argparse', 'io', 'sql', 'builtins', 'ssl', 'types', 'selectors', 'codeop', 'lzma', 'tempfile', 'pickle', 'overrides', 'charset_normalizer', 'pkg_resources', 'hashlib', 'pandas', 'sre_constants', 'linecache', 'calendar', 'site', 'pycparser', 'weakref', 'idna', 'collections', 'opcode', 'pydevconsole', 'contextvars', 'flask_session', 'abc', 'msvcrt', 'xml', 'zlib', 'common', 'pathlib', 'pydevd_file_utils', 'struct', 'flask_wtf', 'ctypes', 'signal', 'dataclasses', 'numpy', 'cmath', 'snowflake', 'queue', 'base64', 'uuid', 'fconfig', 'bz2', 'copyreg', 'colorama', 'dis', 'logging', 'posixpath', 'difflib', 'gc', 'greenlet', 'functools', 'json', 'atexit', 'select', 'werkzeug', 'unicodedata', 'getpass', 'debugpy', 'os', 'http', 'ast', 'config', 'traceback', 'xmlrpc', 'genericpath', 'encodings', 'email', 'gzip', 'inspect', 'dateutil', 'threading', 'gettext', 'zipimport', 'flask', 'concurrent', 'oscrypto', 'flask_migrate', 'pydoc', 'typing_extensions', 'stringprep', 'cffi', 'ntpath', 'itertools', 'sqlalchemy', 'warnings', 'shlex', 'platform', 'operator', 'copy', 'subprocess', 'plistlib', 'secrets', 'glob', 'code', 'time', 'sys', 'uu', 'string', 'nt', 'six', 'binascii', 'click', 'psycopg2', 'enum', 'sqlite3', 're', 'pydevd', 'jinja2', 'datetime', 'textwrap', 'fractions', 'sre_compile', 'pydev_ipython', 'bisect', 'importlib', 'pytz', 'OpenSSL', 'hmac', 'pprint', 'nturl2path', 'mmap', 'Cryptodome', 'configparser', 'heapq', 'timeit', 'itsdangerous', 'requests', 'token', 'pkgutil', 'pydevd_plugins', 'ipaddress', 'csv', 'contextlib', 'random', 'function', 'zipfile', 'asyncio', 'socketserver', 'html'}"}, 'timestamp': '1668106530574'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838af-0502-ae87-1a4b-0303c5be9463', 'value': -690}, 'timestamp': '1668106533032'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838af-0502-afee-1a4b-0303c5beb143', 'value': -691}, 'timestamp': '1668106533365'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a838af-0502-afee-1a4b-0303c5beb143', 'value': 5}, 'timestamp': '1668106533370'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838af-0502-b0de-1a4b-0303c5be859f', 'value': -690}, 'timestamp': '1668106534290'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838af-0502-b0de-1a4b-0303c5be85f7', 'value': -688}, 'timestamp': '1668106534681'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a838af-0502-b0de-1a4b-0303c5be85f7', 'value': 5}, 'timestamp': '1668106534686'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838af-0502-b1d6-1a4b-0303c5bea2b3', 'value': -690}, 'timestamp': '1668106534785'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838af-0502-af26-1a4b-0303c5be76d3', 'value': -690}, 'timestamp': '1668106535115'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a838af-0502-af26-1a4b-0303c5be76d3', 'value': 2}, 'timestamp': '1668106535117'}]}. +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3e20d167-0924-4a65-8a53-8829cbd35a03 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /telemetry/send?request_guid=3e20d167-0924-4a65-8a53-8829cbd35a03 HTTP/1.1" 200 86 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.telemetry:Successfully uploading metrics to telemetry. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9a2ddd96-59bc-444b-be45-61bcf3b40355 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=9a2ddd96-59bc-444b-be45-61bcf3b40355 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.telemetry:Sending 1 logs to telemetry. Data is {'logs': [{'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_imported_packages', 'value': "{'reprlib', 'numbers', 'pyexpat', 'fnmatch', 'pydevd_tracing', 'tokenize', 'cython_runtime', 'urllib', 'quopri', 'errno', 'winreg', 'flask_sqlalchemy', 'cryptography', 'mako', 'codecs', 'mimetypes', 'typing', 'filelock', 'certifi', 'webbrowser', 'sysconfig', 'shutil', 'wtforms', 'sre_parse', 'decimal', 'jwt', 'stat', 'urllib3', 'math', 'socket', 'asn1crypto', 'alembic', 'keyword', 'locale', 'markupsafe', 'cachelib', 'imp', 'marshal', 'argparse', 'io', 'sql', 'builtins', 'ssl', 'types', 'selectors', 'codeop', 'lzma', 'tempfile', 'pickle', 'overrides', 'charset_normalizer', 'pkg_resources', 'hashlib', 'pandas', 'sre_constants', 'linecache', 'calendar', 'site', 'pycparser', 'weakref', 'idna', 'collections', 'opcode', 'pydevconsole', 'contextvars', 'flask_session', 'abc', 'msvcrt', 'xml', 'zlib', 'common', 'pathlib', 'pydevd_file_utils', 'struct', 'flask_wtf', 'ctypes', 'signal', 'dataclasses', 'numpy', 'cmath', 'snowflake', 'queue', 'base64', 'uuid', 'fconfig', 'bz2', 'copyreg', 'colorama', 'dis', 'logging', 'posixpath', 'difflib', 'gc', 'greenlet', 'functools', 'json', 'atexit', 'select', 'werkzeug', 'unicodedata', 'getpass', 'debugpy', 'os', 'http', 'ast', 'config', 'traceback', 'xmlrpc', 'genericpath', 'encodings', 'email', 'gzip', 'inspect', 'dateutil', 'threading', 'gettext', 'zipimport', 'flask', 'concurrent', 'oscrypto', 'flask_migrate', 'pydoc', 'typing_extensions', 'stringprep', 'cffi', 'ntpath', 'itertools', 'sqlalchemy', 'warnings', 'shlex', 'platform', 'operator', 'copy', 'subprocess', 'plistlib', 'secrets', 'glob', 'code', 'time', 'sys', 'uu', 'string', 'nt', 'six', 'binascii', 'click', 'psycopg2', 'enum', 'sqlite3', 're', 'pydevd', 'jinja2', 'datetime', 'textwrap', 'fractions', 'sre_compile', 'pydev_ipython', 'bisect', 'importlib', 'pytz', 'OpenSSL', 'hmac', 'pprint', 'nturl2path', 'mmap', 'Cryptodome', 'configparser', 'heapq', 'timeit', 'itsdangerous', 'requests', 'token', 'pkgutil', 'pydevd_plugins', 'ipaddress', 'csv', 'contextlib', 'random', 'function', 'zipfile', 'asyncio', 'socketserver', 'html'}"}, 'timestamp': '1668106532095'}]}. +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1dbcfb61-8a3a-46e8-9481-387230c1583f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /telemetry/send?request_guid=1dbcfb61-8a3a-46e8-9481-387230c1583f HTTP/1.1" 200 86 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.telemetry:Successfully uploading metrics to telemetry. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9ae8b62c-eca8-4b43-90c6-3ce37fe69c04 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=9ae8b62c-eca8-4b43-90c6-3ce37fe69c04 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:57:56] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&submit=Submit HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:57:57] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:57:57] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:57:57] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:57:57] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:57:57] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:57:57] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:57:57] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:57:57] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:57:57] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 13:57:57] "GET /js/main.js HTTP/1.1" 404 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\main.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 31.65s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 31.66s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 31.66s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=720f4e7e-663c-4fac-8be0-10d524ec2b30 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f1dc8b01-ec35-473f-adb9-dd163541642b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2094005915936 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2094005915936 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2094006234288 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2094006234288 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2094006234288 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2094006234288 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2094005915936 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2094005915936 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=720f4e7e-663c-4fac-8be0-10d524ec2b30&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=f1dc8b01-ec35-473f-adb9-dd163541642b HTTP/1.1" 200 1543 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=e1d810f0-c528-4554-85ed-65f7c45a7ad6 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ba432039-1abc-4fdb-8896-6dd461914abd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=e1d810f0-c528-4554-85ed-65f7c45a7ad6&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=ba432039-1abc-4fdb-8896-6dd461914abd HTTP/1.1" 200 1549 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00230s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 320dd616-4710-44a4-9ed9-16a12861a598 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c068d7c5-9001-4f7b-a6c3-834e87534aa1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=320dd616-4710-44a4-9ed9-16a12861a598&request_guid=c068d7c5-9001-4f7b-a6c3-834e87534aa1 HTTP/1.1" 200 2280 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838b5-0502-afee-1a4b-0303c5c035ff +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838b5-0502-afee-1a4b-0303c5c035ff +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838b5-0502-afee-1a4b-0303c5c035ff' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d0123ee4-d22b-438d-8783-294423bd062b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838b5-0502-afee-1a4b-0303c5c035ff?request_guid=d0123ee4-d22b-438d-8783-294423bd062b HTTP/1.1" 200 1858 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838b5-0502-afee-1a4b-0303c5c035ff' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1329cda0-029e-468a-bd4f-88bc83812efb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838b5-0502-afee-1a4b-0303c5c035ff?request_guid=1329cda0-029e-468a-bd4f-88bc83812efb HTTP/1.1" 200 1858 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838b5-0502-afee-1a4b-0303c5c035ff'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 4dcf855e-1792-470b-a6ea-40b83ea3de69 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838b5-0502-afee-1a4b-0303c5c035ff'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838b5-0502-afee-1a4b-0303c5c035ff'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ce65eaf9-dda6-4efb-859c-dfc4b6a4d4cd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4dcf855e-1792-470b-a6ea-40b83ea3de69&request_guid=ce65eaf9-dda6-4efb-859c-dfc4b6a4d4cd HTTP/1.1" 200 2275 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838b5-0502-b1d6-1a4b-0303c5c045db +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838b5-0502-b1d6-1a4b-0303c5c045db +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 35146642-d510-4bfd-915a-f447a75edc93 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 69847827-2451-47d0-9d8f-ecd96b130572 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=35146642-d510-4bfd-915a-f447a75edc93&request_guid=69847827-2451-47d0-9d8f-ecd96b130572 HTTP/1.1" 200 1796 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838b5-0502-b0de-1a4b-0303c5c0506b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838b5-0502-b0de-1a4b-0303c5c0506b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838b5-0502-b0de-1a4b-0303c5c0506b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 332a11dc-7449-415e-9184-c99d8bcf4702 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838b5-0502-b0de-1a4b-0303c5c0506b?request_guid=332a11dc-7449-415e-9184-c99d8bcf4702 HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838b5-0502-b0de-1a4b-0303c5c0506b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a2c8a6b9-9886-4b5a-871f-07b99aee8582 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838b5-0502-b0de-1a4b-0303c5c0506b?request_guid=a2c8a6b9-9886-4b5a-871f-07b99aee8582 HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838b5-0502-b0de-1a4b-0303c5c0506b'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: b2aa9ed1-e4e2-47db-bea6-c0a3d3d7e55a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838b5-0502-b0de-1a4b-0303c5c0506b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838b5-0502-b0de-1a4b-0303c5c0506b'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2dddfebe-680a-42cd-befb-1586c8947bdb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b2aa9ed1-e4e2-47db-bea6-c0a3d3d7e55a&request_guid=2dddfebe-680a-42cd-befb-1586c8947bdb HTTP/1.1" 200 1799 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838b5-0502-b1d6-1a4b-0303c5c0462f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838b5-0502-b1d6-1a4b-0303c5c0462f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: d27b986a-ddc2-450f-ad93-199c17865117 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8d817620-afb1-45de-87f4-081ed105fdb3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d27b986a-ddc2-450f-ad93-199c17865117&request_guid=8d817620-afb1-45de-87f4-081ed105fdb3 HTTP/1.1" 200 2281 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838b5-0502-b0de-1a4b-0303c5c050b7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838b5-0502-b0de-1a4b-0303c5c050b7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838b5-0502-b0de-1a4b-0303c5c050b7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9c947604-b373-4392-94ca-07b004863397 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838b5-0502-b0de-1a4b-0303c5c050b7?request_guid=9c947604-b373-4392-94ca-07b004863397 HTTP/1.1" 200 1680 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838b5-0502-b0de-1a4b-0303c5c050b7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ad34ab9b-c30c-426e-a159-5e82556c8675 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838b5-0502-b0de-1a4b-0303c5c050b7?request_guid=ad34ab9b-c30c-426e-a159-5e82556c8675 HTTP/1.1" 200 1683 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838b5-0502-b0de-1a4b-0303c5c050b7'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 7698fca8-5a06-4965-9505-9c1ed65a6cf4 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838b5-0502-b0de-1a4b-0303c5c050b7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838b5-0502-b0de-1a4b-0303c5c050b7'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2840ed9f-6f30-4c0b-9c36-7abdc9c2ae18 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7698fca8-5a06-4965-9505-9c1ed65a6cf4&request_guid=2840ed9f-6f30-4c0b-9c36-7abdc9c2ae18 HTTP/1.1" 200 2284 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838b5-0502-afee-1a4b-0303c5c03713 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838b5-0502-afee-1a4b-0303c5c03713 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 5.496s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=f49ee765-226c-4ddf-8edc-bed38f1a0595 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 70ac80f0-d3d5-4101-a7e5-a5155161bc04 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=f49ee765-226c-4ddf-8edc-bed38f1a0595&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=70ac80f0-d3d5-4101-a7e5-a5155161bc04 HTTP/1.1" 200 1547 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: fc06b58b-5360-4455-bb79-173da2cfb4aa +DEBUG:snowflake.connector.cursor:running query [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fdd433e2-7988-4e6c-8dfc-5d14c7b83dfb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=fc06b58b-5360-4455-bb79-173da2cfb4aa&request_guid=fdd433e2-7988-4e6c-8dfc-5d14c7b83dfb HTTP/1.1" 200 4901 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838b5-0502-b0de-1a4b-0303c5c0516f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838b5-0502-b0de-1a4b-0303c5c0516f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=56 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838b5-0502-b0de-1a4b-0303c5c0516f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 14de4578-4196-45e3-a422-fd6e37b328fc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838b5-0502-b0de-1a4b-0303c5c0516f?request_guid=14de4578-4196-45e3-a422-fd6e37b328fc HTTP/1.1" 200 1980 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838b5-0502-b0de-1a4b-0303c5c0516f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 50a90073-36d4-46ac-80fb-a99a286a7f01 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838b5-0502-b0de-1a4b-0303c5c0516f?request_guid=50a90073-36d4-46ac-80fb-a99a286a7f01 HTTP/1.1" 200 1980 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838b5-0502-b0de-1a4b-0303c5c0516f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 51f2537b-95b3-4039-957e-4a045dc94b4b +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838b5-0502-b0de-1a4b-0303c5c0516f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838b5-0502-b0de-1a4b-0303c5c0516f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 423bebb1-a90c-4479-b752-95df77b51efb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=51f2537b-95b3-4039-957e-4a045dc94b4b&request_guid=423bebb1-a90c-4479-b752-95df77b51efb HTTP/1.1" 200 4898 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838b5-0502-af26-1a4b-0303c5c01fcb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838b5-0502-af26-1a4b-0303c5c01fcb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=56 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_0_7 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_1_7 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_2_3 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_2_4 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_2_5 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_2_6 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_3_0 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_3_4 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_3_5 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_4_4 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_4_6 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_5_0 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_5_1 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_5_2 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_5_3 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_5_4 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_6_0 +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_6_1 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_6_2 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_7_0 +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_7_1 +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_7_6 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=YBNOqdfgOcanPKU39ms2Gpu4sWw%3D HTTP/1.1" 200 34812 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=ZzpaCM81SHQ26i7T%2Bho5Tu4H93U%3D HTTP/1.1" 200 463557 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=aX59wkOZXwsAz5MZGE%2FTTfDtGgI%3D HTTP/1.1" 200 261275 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=GnjqCAXOOwS96pEBO1tviaPF6vw%3D HTTP/1.1" 200 132762 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=kxGGJRk%2Fs9zR0MJQom9BUWYN8Zc%3D HTTP/1.1" 200 962955 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_7 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=ykVP1VO0pZ4SLbwWmDzMBff05gA%3D HTTP/1.1" 200 1755756 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=%2BniyOsL1PFigqCOa7U1HJO2%2B3uE%3D HTTP/1.1" 200 3657737 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_0_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=psSu2M1318cKKEdPidj4hYSWX6s%3D HTTP/1.1" 200 780103 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_7 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=s5sRfXd1bfUs7D1xjVFFXbG4YNk%3D HTTP/1.1" 200 35008 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2522 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=aqM5yNYulI2iknssLMRR2LtAwXU%3D HTTP/1.1" 200 133242 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2526 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2541 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2535 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2521 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2532 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=SNIH%2FQJaZwaraxGl9eqRs61hdYc%3D HTTP/1.1" 200 263308 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2518 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2541 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2527 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2543 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2536 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2522 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2531 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 305 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=N5ZbdN6fganBf6T0pVM0sK1U8cs%3D HTTP/1.1" 200 465194 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=d9CEvURRFlZjTqhF0aiPS2oBurw%3D HTTP/1.1" 200 966909 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=B3AvYUcT5U16l%2BRz8F9w6kfzxW0%3D HTTP/1.1" 200 1753330 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=8mLEo0JQdLBh8k1YVLrdAGCju8g%3D HTTP/1.1" 200 3512578 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_1_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=jZhG%2FrF%2BVV17RNGjjaC8FAQOQ0A%3D HTTP/1.1" 200 506386 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 2 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=iDrCjjuvYaac0xzuw0fCItxyIAE%3D HTTP/1.1" 200 35094 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1981 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2523 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=aQN1%2B55HY8EYeeFky6L3FNGBZcM%3D HTTP/1.1" 200 133347 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2527 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2542 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2540 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2524 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 10 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 10, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2519 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=lDCixcJK9Tys7h2Of4m5mD2QYLk%3D HTTP/1.1" 200 264474 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2533 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2538 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2514 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2540 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 9, rows in current batch: 2537 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 2, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1138 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=9PhmjKW6vnlae%2BQVu9j36v7QfbM%3D HTTP/1.1" 200 467279 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=SWAq1p3srHY7VvzRxDIvssVddzQ%3D HTTP/1.1" 200 967013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=O94b2FjrfdAvbSyVdUnbu8EmJcM%3D HTTP/1.1" 200 1759307 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=THJ8s7IztrIZG%2B6eR9aUqczMgP8%3D HTTP/1.1" 200 2209742 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=%2BdY9jZ3yfgMeszdwurxa7j3mDGs%3D HTTP/1.1" 200 33980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 991 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1980 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=j1ojTsudj7zSS%2BA65gCHLJ7zi4w%3D HTTP/1.1" 200 127436 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2518 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=aFw9x9%2BiBcTmum54OM15wgIjJ4Y%3D HTTP/1.1" 200 255560 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2538 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2516 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_3 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2516 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=FnpA4GdlePoLH8EOewKNL9LJP60%3D HTTP/1.1" 200 456036 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2525 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2536 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 681 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 247 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 246 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 492 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 495 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=sQwS9q5n4DHG0zp5OfGUoMaPBSE%3D HTTP/1.1" 200 44566 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 495 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_3_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=jN4fBUEf0QwM2eVAGO19x7CL7Xo%3D HTTP/1.1" 200 954251 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 989 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=owywsHyX5JofB7UQa59yW604Gu4%3D HTTP/1.1" 200 35006 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 991 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=9uQybbXQbjgtyiEL4DAXPDLmp8o%3D HTTP/1.1" 200 133370 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=G5bueDQF1%2BOlJ%2FW4QjPijWXGaDg%3D HTTP/1.1" 200 261716 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 326 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_3 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=EPcgS2C5Pk9Y1u7aNmcCb1HgNJc%3D HTTP/1.1" 200 466980 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=D4p8b%2FmLFeRIDLOZwgtQvuQj2WA%3D HTTP/1.1" 200 969208 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=n7gNjAn35a6hdvQW99KclxKqdWM%3D HTTP/1.1" 200 1755301 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 988 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_4_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=QYo1vOzj4XF%2FqiM%2B1uSOUO3w7SI%3D HTTP/1.1" 200 137296 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 989 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 990 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=AcQOAvnupycPwaZXkjxIkoXH%2BLc%3D HTTP/1.1" 200 33511 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=p0YzQmJnFAdBdaNCiIKeeGT88hM%3D HTTP/1.1" 200 128680 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2529 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=xkXXbGGxkuDapbs2yrp6NTMLljM%3D HTTP/1.1" 200 255977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2540 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2526 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1015 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 249 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=L70NZOLYiqmMqS3VBfQpKNrIfR8%3D HTTP/1.1" 200 459576 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=ZQR6MG1%2BTSbNXJP0jRTjjZm1GkU%3D HTTP/1.1" 200 1747873 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=2vZnPpUeI04JJwup518eEJeqfqI%3D HTTP/1.1" 200 1109252 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 498 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_5_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=Vmy1rrFqd54MW0je8NmNND2FHbY%3D HTTP/1.1" 200 976353 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=VqnLhL9to7JcWXX6jhl1JC9tGGk%3D HTTP/1.1" 200 35041 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 995 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1977 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=IwhW1t2Q7SbTalOZUIpAiW8shnA%3D HTTP/1.1" 200 133495 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1987 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 3 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 41 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 42 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 42 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2541 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2525 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=nIIpZhhW8Kn2TrSDYwojjhbTF08%3D HTTP/1.1" 200 263952 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2527 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2517 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2539 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 42 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 43 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 43 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 3, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2526 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_3 with existing session +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2539 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1893 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=fOFQ%2FxAmBXT5kKogcOsj1NKyZ%2F8%3D HTTP/1.1" 200 467674 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 43 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 44 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 44 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 44 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 45 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 45 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 45 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 46 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 46 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=s3X6eXU1sAIl2%2FdLPGSJMQW8mps%3D HTTP/1.1" 200 968196 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 495 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 46 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 47 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_6_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=xn5XpsvDZYhFgSMjCEeVBnQ7tp4%3D HTTP/1.1" 200 90395 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=QR8h3vETlDi0LsLGZppEGOo%2FDk8%3D HTTP/1.1" 200 35165 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 47 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 989 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=CO9Q6ctoYn6P09kM8E0ezEu4jqU%3D HTTP/1.1" 200 133887 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 47 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 48 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 48 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=PY%2BnBfBgtmMO98Syo79eU%2BC9lGc%3D HTTP/1.1" 200 263286 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 48 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 49 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 49 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 662 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 49 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 50 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 50 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 50 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 51 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 51 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 51 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 52 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 52 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=WDzHrnjYzO2CcIPYWs9GztYDdGQ%3D HTTP/1.1" 200 465199 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=eLxDPeYTQgMEeiHA6cG71LN%2FmOQ%3D HTTP/1.1" 200 963971 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=2e6on9jhX0IPMZjfbgFIoKVILRE%3D HTTP/1.1" 200 1745961 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 52 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 53 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 53 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a83899-0502-b1d6-1a4b-0303c5b8b423_0/main/data_0_7_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128491&Signature=oKVylHnnX9epXnxePusKCLBj%2Fzo%3D HTTP/1.1" 200 2231250 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 53 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 54 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 54 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1983 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 54 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 55 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 55 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2522 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2546 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2536 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2522 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 55 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 56 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 56 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2525 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2539 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2527 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 962 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 56 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c6314f71-b38f-4f23-b059-4533a673cc29 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=c6314f71-b38f-4f23-b059-4533a673cc29 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=5ba55ed3-3e9b-4d99-bef0-72ba17272ad6 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f460b048-112d-41ec-8a8b-8d413b861f68 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=5ba55ed3-3e9b-4d99-bef0-72ba17272ad6&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=f460b048-112d-41ec-8a8b-8d413b861f68 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: ea602796-ccdb-4586-a7b0-7f53c8f12b04 +DEBUG:snowflake.connector.cursor:running query [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 387f0b7b-3139-496e-bc3d-760bf38684d1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ea602796-ccdb-4586-a7b0-7f53c8f12b04&request_guid=387f0b7b-3139-496e-bc3d-760bf38684d1 HTTP/1.1" 200 2295 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838b7-0502-af26-1a4b-0303c5c0bf77 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838b7-0502-af26-1a4b-0303c5c0bf77 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838b7-0502-af26-1a4b-0303c5c0bf77' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8696f6ab-2450-4780-871d-fab116d8a336 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838b7-0502-af26-1a4b-0303c5c0bf77?request_guid=8696f6ab-2450-4780-871d-fab116d8a336 HTTP/1.1" 200 1976 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838b7-0502-af26-1a4b-0303c5c0bf77' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bcf25d49-db86-4390-877b-af6bf4e5ba70 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838b7-0502-af26-1a4b-0303c5c0bf77?request_guid=bcf25d49-db86-4390-877b-af6bf4e5ba70 HTTP/1.1" 200 1974 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838b7-0502-af26-1a4b-0303c5c0bf77'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 8dd3d910-d3f8-4751-986c-82f24e4c497d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838b7-0502-af26-1a4b-0303c5c0bf77'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838b7-0502-af26-1a4b-0303c5c0bf77'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1dad9970-e4fa-471f-9f1e-6f8eb395a97a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=8dd3d910-d3f8-4751-986c-82f24e4c497d&request_guid=1dad9970-e4fa-471f-9f1e-6f8eb395a97a HTTP/1.1" 200 2302 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838b7-0502-ae87-1a4b-0303c5c0cedb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838b7-0502-ae87-1a4b-0303c5c0cedb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128634&Signature=ciFcHwiyMLXlB5HqeoJUEG2Wo2w%3D HTTP/1.1" 200 36830 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128634&Signature=F4fArV1QoXy3UIbsT7BUY21jujE%3D HTTP/1.1" 200 39942 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668128634&Signature=eBxwSMNjw1Hipj8tXIviEdh%2FMlg%3D HTTP/1.1" 200 137002 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 246 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 246 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 282 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.telemetry:Sending 1 logs to telemetry. Data is {'logs': [{'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_imported_packages', 'value': "{'asn1crypto', 'html', 'xmlrpc', 'base64', 'copyreg', 'uu', 'sre_constants', 'shutil', 'calendar', 'ast', 'oscrypto', 'lzma', 'config', 'random', 'flask_migrate', 'typing_extensions', 'gzip', 'getpass', 'quopri', 'operator', 'threading', 'ntpath', 'numpy', 'contextvars', 'charset_normalizer', 'jinja2', 'ctypes', 'plistlib', 'bisect', 'bz2', 'pydoc', 'warnings', 'cryptography', 'hmac', 'traceback', 'dis', 'werkzeug', 'flask_sqlalchemy', 'click', 'functools', 'selectors', 'codecs', 'weakref', 'pyexpat', 'string', 'ssl', 'asyncio', 'token', 'unicodedata', 'linecache', 'platform', 'sre_compile', 'alembic', 're', 'psycopg2', 'keyword', 'locale', 'dateutil', 'pydevd_plugins', 'pandas', 'binascii', 'pydevconsole', 'socketserver', 'nt', 'fconfig', 'subprocess', 'builtins', 'abc', 'mmap', 'logging', 'webbrowser', 'contextlib', 'sqlalchemy', 'pydevd_tracing', 'mako', 'ipaddress', 'json', 'function', 'textwrap', 'shlex', 'marshal', 'opcode', 'pytz', 'cython_runtime', 'six', 'sre_parse', 'tokenize', 'flask_session', 'winreg', 'markupsafe', 'pkg_resources', 'wtforms', 'pydev_ipython', 'inspect', 'encodings', 'importlib', 'collections', 'csv', 'queue', 'hashlib', 'zlib', 'signal', 'stringprep', 'zipimport', 'site', 'greenlet', 'cachelib', 'OpenSSL', 'difflib', 'glob', 'http', 'colorama', 'certifi', 'itertools', 'enum', 'datetime', 'pycparser', 'decimal', 'types', 'reprlib', 'secrets', 'posixpath', 'io', 'math', 'overrides', 'dataclasses', 'snowflake', 'heapq', 'configparser', 'xml', 'codeop', 'argparse', 'sys', 'sqlite3', 'Cryptodome', 'os', 'genericpath', 'pprint', 'pkgutil', 'socket', 'urllib3', 'requests', 'flask_wtf', 'mimetypes', 'typing', 'jwt', 'numbers', 'pydevd_file_utils', 'pickle', 'pydevd', 'time', 'pathlib', 'cmath', 'flask', 'debugpy', 'cffi', 'errno', 'common', 'atexit', 'tempfile', 'idna', 'filelock', 'fnmatch', 'sysconfig', 'nturl2path', 'struct', 'urllib', 'copy', 'zipfile', 'sql', 'imp', 'gc', 'stat', 'itsdangerous', 'gettext', 'msvcrt', 'code', 'concurrent', 'timeit', 'email', 'fractions', 'uuid', 'select'}"}, 'timestamp': '1668106881266'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838b5-0502-afee-1a4b-0303c5c035ff', 'value': -709}, 'timestamp': '1668106884506'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838b5-0502-b1d6-1a4b-0303c5c045db', 'value': -708}, 'timestamp': '1668106885694'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a838b5-0502-b1d6-1a4b-0303c5c045db', 'value': 5}, 'timestamp': '1668106885699'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838b5-0502-b0de-1a4b-0303c5c0506b', 'value': -706}, 'timestamp': '1668106886309'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838b5-0502-b1d6-1a4b-0303c5c0462f', 'value': -709}, 'timestamp': '1668106886922'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a838b5-0502-b1d6-1a4b-0303c5c0462f', 'value': 3}, 'timestamp': '1668106886924'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838b5-0502-b0de-1a4b-0303c5c050b7', 'value': -709}, 'timestamp': '1668106887123'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838b5-0502-afee-1a4b-0303c5c03713', 'value': -709}, 'timestamp': '1668106888154'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a838b5-0502-afee-1a4b-0303c5c03713', 'value': 2}, 'timestamp': '1668106888156'}]}. +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b852fc64-875d-4236-a8fe-4e228da5b829 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /telemetry/send?request_guid=b852fc64-875d-4236-a8fe-4e228da5b829 HTTP/1.1" 200 86 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.telemetry:Successfully uploading metrics to telemetry. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a4c6fc69-7e5d-4772-afb0-e1a326c49a07 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=a4c6fc69-7e5d-4772-afb0-e1a326c49a07 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.telemetry:Sending 1 logs to telemetry. Data is {'logs': [{'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_imported_packages', 'value': "{'asn1crypto', 'html', 'xmlrpc', 'base64', 'copyreg', 'uu', 'sre_constants', 'shutil', 'calendar', 'ast', 'oscrypto', 'lzma', 'config', 'random', 'flask_migrate', 'typing_extensions', 'gzip', 'getpass', 'quopri', 'operator', 'threading', 'ntpath', 'numpy', 'contextvars', 'charset_normalizer', 'jinja2', 'ctypes', 'plistlib', 'bisect', 'bz2', 'pydoc', 'warnings', 'cryptography', 'hmac', 'traceback', 'dis', 'werkzeug', 'flask_sqlalchemy', 'click', 'functools', 'selectors', 'codecs', 'weakref', 'pyexpat', 'string', 'ssl', 'asyncio', 'token', 'unicodedata', 'linecache', 'platform', 'sre_compile', 'alembic', 're', 'psycopg2', 'keyword', 'locale', 'dateutil', 'pydevd_plugins', 'pandas', 'binascii', 'pydevconsole', 'socketserver', 'nt', 'fconfig', 'subprocess', 'builtins', 'abc', 'mmap', 'logging', 'webbrowser', 'contextlib', 'sqlalchemy', 'pydevd_tracing', 'mako', 'ipaddress', 'json', 'function', 'textwrap', 'shlex', 'marshal', 'opcode', 'pytz', 'cython_runtime', 'six', 'sre_parse', 'tokenize', 'flask_session', 'winreg', 'markupsafe', 'pkg_resources', 'wtforms', 'pydev_ipython', 'inspect', 'encodings', 'importlib', 'collections', 'csv', 'queue', 'hashlib', 'zlib', 'signal', 'stringprep', 'zipimport', 'site', 'greenlet', 'cachelib', 'OpenSSL', 'difflib', 'glob', 'http', 'colorama', 'certifi', 'itertools', 'enum', 'datetime', 'pycparser', 'decimal', 'types', 'reprlib', 'secrets', 'posixpath', 'io', 'math', 'overrides', 'dataclasses', 'snowflake', 'heapq', 'configparser', 'xml', 'codeop', 'argparse', 'sys', 'sqlite3', 'Cryptodome', 'os', 'genericpath', 'pprint', 'pkgutil', 'socket', 'urllib3', 'requests', 'flask_wtf', 'mimetypes', 'typing', 'jwt', 'numbers', 'pydevd_file_utils', 'pickle', 'pydevd', 'time', 'pathlib', 'cmath', 'flask', 'debugpy', 'cffi', 'errno', 'common', 'atexit', 'tempfile', 'idna', 'filelock', 'fnmatch', 'sysconfig', 'nturl2path', 'struct', 'urllib', 'copy', 'zipfile', 'sql', 'imp', 'gc', 'stat', 'itsdangerous', 'gettext', 'msvcrt', 'code', 'concurrent', 'timeit', 'email', 'fractions', 'uuid', 'select'}"}, 'timestamp': '1668106882768'}]}. +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cadf69f8-9864-4d7b-9b60-6198d57a21e3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /telemetry/send?request_guid=cadf69f8-9864-4d7b-9b60-6198d57a21e3 HTTP/1.1" 200 86 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.telemetry:Successfully uploading metrics to telemetry. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1c46a3a3-8ea4-4085-a253-d5309a87d40b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=1c46a3a3-8ea4-4085-a253-d5309a87d40b HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:03:59] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&submit=Submit HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:03:59] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:03:59] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:03:59] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:03:59] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:04:00] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:04:00] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:04:00] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:04:00] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:04:00] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:04:00] "GET /js/main.js HTTP/1.1" 404 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\main.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 16.34s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 16.35s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 16.35s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=5569d9a1-0d7d-4954-94e6-2d43a63d42e5 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7b960455-e815-4d37-998c-f5a5fc9ae9a2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2220869266512 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2220869266512 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2220869666848 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2220869666848 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2220869666848 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2220869666848 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2220869266512 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2220869266512 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=5569d9a1-0d7d-4954-94e6-2d43a63d42e5&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=7b960455-e815-4d37-998c-f5a5fc9ae9a2 HTTP/1.1" 200 1546 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=3a49cf85-0dbd-46aa-aad8-8ef8fe248b20 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 42c449ae-fffc-42b4-9de9-9f63f4061d70 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=3a49cf85-0dbd-46aa-aad8-8ef8fe248b20&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=42c449ae-fffc-42b4-9de9-9f63f4061d70 HTTP/1.1" 200 1546 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00200s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: cc2f828c-4e57-461c-8e4a-0663f10d60bd +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7f054de3-9da9-4caf-96fd-1e2a88fb03a1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cc2f828c-4e57-461c-8e4a-0663f10d60bd&request_guid=7f054de3-9da9-4caf-96fd-1e2a88fb03a1 HTTP/1.1" 200 2276 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838be-0502-af26-1a4b-0303c5c24683 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838be-0502-af26-1a4b-0303c5c24683 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838be-0502-af26-1a4b-0303c5c24683' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b19793ac-8497-4c57-9676-47692c392778 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838be-0502-af26-1a4b-0303c5c24683?request_guid=b19793ac-8497-4c57-9676-47692c392778 HTTP/1.1" 200 1848 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838be-0502-af26-1a4b-0303c5c24683' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0f57955a-3a94-4c39-b032-609fe1d67532 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838be-0502-af26-1a4b-0303c5c24683?request_guid=0f57955a-3a94-4c39-b032-609fe1d67532 HTTP/1.1" 200 1849 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838be-0502-af26-1a4b-0303c5c24683'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 0a823790-b65a-4d10-9756-73f7c4bd06de +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838be-0502-af26-1a4b-0303c5c24683'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838be-0502-af26-1a4b-0303c5c24683'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f1189526-2c14-46d2-a85d-b2474273b059 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0a823790-b65a-4d10-9756-73f7c4bd06de&request_guid=f1189526-2c14-46d2-a85d-b2474273b059 HTTP/1.1" 200 2277 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838be-0502-afee-1a4b-0303c5c263fb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838be-0502-afee-1a4b-0303c5c263fb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 5243b6e5-39b3-4e6a-9ac4-d969e353a0b1 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 847eb19c-cdf9-4e10-a74e-6175f6fd3636 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5243b6e5-39b3-4e6a-9ac4-d969e353a0b1&request_guid=847eb19c-cdf9-4e10-a74e-6175f6fd3636 HTTP/1.1" 200 1796 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838be-0502-b0de-1a4b-0303c5c23bcf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838be-0502-b0de-1a4b-0303c5c23bcf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838be-0502-b0de-1a4b-0303c5c23bcf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1b8b88aa-b1c3-49a4-b2a8-1db489a52935 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838be-0502-b0de-1a4b-0303c5c23bcf?request_guid=1b8b88aa-b1c3-49a4-b2a8-1db489a52935 HTTP/1.1" 200 2164 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838be-0502-b0de-1a4b-0303c5c23bcf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 73e43ea0-f5a7-405c-b3bd-b630c3998b18 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838be-0502-b0de-1a4b-0303c5c23bcf?request_guid=73e43ea0-f5a7-405c-b3bd-b630c3998b18 HTTP/1.1" 200 2164 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838be-0502-b0de-1a4b-0303c5c23bcf'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 9f1d53c1-39a6-49d7-8362-f98054cc0f6a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838be-0502-b0de-1a4b-0303c5c23bcf'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838be-0502-b0de-1a4b-0303c5c23bcf'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 06bcc630-ee1e-4dcb-a74e-e465edf65afd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=9f1d53c1-39a6-49d7-8362-f98054cc0f6a&request_guid=06bcc630-ee1e-4dcb-a74e-e465edf65afd HTTP/1.1" 200 1802 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838be-0502-afee-1a4b-0303c5c2641b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838be-0502-afee-1a4b-0303c5c2641b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 152880cc-585a-4c09-a8f0-f7de876ea1ad +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f9089449-25c5-430e-9ffb-30c8e7ff77f8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=152880cc-585a-4c09-a8f0-f7de876ea1ad&request_guid=f9089449-25c5-430e-9ffb-30c8e7ff77f8 HTTP/1.1" 200 2288 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838be-0502-ae87-1a4b-0303c5c2573b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838be-0502-ae87-1a4b-0303c5c2573b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838be-0502-ae87-1a4b-0303c5c2573b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e98c04e1-6e2c-461e-8046-04f6745813fe +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838be-0502-ae87-1a4b-0303c5c2573b?request_guid=e98c04e1-6e2c-461e-8046-04f6745813fe HTTP/1.1" 200 1677 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838be-0502-ae87-1a4b-0303c5c2573b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9cf8d100-a1dd-4103-a7c7-4b7a3a3fc0af +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838be-0502-ae87-1a4b-0303c5c2573b?request_guid=9cf8d100-a1dd-4103-a7c7-4b7a3a3fc0af HTTP/1.1" 200 1677 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838be-0502-ae87-1a4b-0303c5c2573b'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: dbefd582-9ce4-4836-bfba-289bd1f6f0d3 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838be-0502-ae87-1a4b-0303c5c2573b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838be-0502-ae87-1a4b-0303c5c2573b'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0e609c58-f07b-450e-82d5-a2f7ebbd4103 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=dbefd582-9ce4-4836-bfba-289bd1f6f0d3&request_guid=0e609c58-f07b-450e-82d5-a2f7ebbd4103 HTTP/1.1" 200 2289 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838be-0502-afee-1a4b-0303c5c2642b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838be-0502-afee-1a4b-0303c5c2642b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 8.704s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 8.709s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 8.713s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=65596a2b-2b0f-4ef6-b2a0-0d26d3fc92e8 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bb699dde-1bb0-4b69-a213-b9f95deff556 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1839454377472 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1839454377472 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1839454679440 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1839454679440 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1839454679440 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1839454679440 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1839454377472 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1839454377472 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=65596a2b-2b0f-4ef6-b2a0-0d26d3fc92e8&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=bb699dde-1bb0-4b69-a213-b9f95deff556 HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=eb5427f0-e250-4986-8d5c-778a27432464 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2408899c-7899-4a49-9e9d-082db702f031 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=eb5427f0-e250-4986-8d5c-778a27432464&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=2408899c-7899-4a49-9e9d-082db702f031 HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00355s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 3e72b63b-3818-4ea3-a29f-910f5123adf3 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ff8fa5c5-f3ce-4f48-bd9e-6e803ace7a83 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3e72b63b-3818-4ea3-a29f-910f5123adf3&request_guid=ff8fa5c5-f3ce-4f48-bd9e-6e803ace7a83 HTTP/1.1" 200 2273 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838bf-0502-af26-1a4b-0303c5c2a783 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838bf-0502-af26-1a4b-0303c5c2a783 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838bf-0502-af26-1a4b-0303c5c2a783' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 75a23d69-5c71-4ac3-9923-b410780a2250 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838bf-0502-af26-1a4b-0303c5c2a783?request_guid=75a23d69-5c71-4ac3-9923-b410780a2250 HTTP/1.1" 200 1870 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838bf-0502-af26-1a4b-0303c5c2a783' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 236ccf97-a330-4cdc-b0fa-fb5eed1f0570 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838bf-0502-af26-1a4b-0303c5c2a783?request_guid=236ccf97-a330-4cdc-b0fa-fb5eed1f0570 HTTP/1.1" 200 1869 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838bf-0502-af26-1a4b-0303c5c2a783'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 38f098ff-cc6b-4fc3-8101-efc742304380 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838bf-0502-af26-1a4b-0303c5c2a783'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838bf-0502-af26-1a4b-0303c5c2a783'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6e9d416a-98de-45d9-be5c-3e23f52120a2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=38f098ff-cc6b-4fc3-8101-efc742304380&request_guid=6e9d416a-98de-45d9-be5c-3e23f52120a2 HTTP/1.1" 200 2279 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838bf-0502-afee-1a4b-0303c5c2b737 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838bf-0502-afee-1a4b-0303c5c2b737 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 89dce038-754f-4def-b917-2c188aabce29 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 167adabe-e4bb-4c19-9858-a3d90f80c07c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=89dce038-754f-4def-b917-2c188aabce29&request_guid=167adabe-e4bb-4c19-9858-a3d90f80c07c HTTP/1.1" 200 1798 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838bf-0502-af26-1a4b-0303c5c2a7b3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838bf-0502-af26-1a4b-0303c5c2a7b3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838bf-0502-af26-1a4b-0303c5c2a7b3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 30dcb189-1503-4e8b-8744-5e3517770b5f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838bf-0502-af26-1a4b-0303c5c2a7b3?request_guid=30dcb189-1503-4e8b-8744-5e3517770b5f HTTP/1.1" 200 2174 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838bf-0502-af26-1a4b-0303c5c2a7b3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 38956154-edc3-445b-b10f-3064fd156131 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838bf-0502-af26-1a4b-0303c5c2a7b3?request_guid=38956154-edc3-445b-b10f-3064fd156131 HTTP/1.1" 200 2174 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838bf-0502-af26-1a4b-0303c5c2a7b3'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: b2701a7f-f326-4a61-842f-2ea09b241e6a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838bf-0502-af26-1a4b-0303c5c2a7b3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838bf-0502-af26-1a4b-0303c5c2a7b3'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 423b2eb8-6e52-45e0-a939-77e565beefb0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b2701a7f-f326-4a61-842f-2ea09b241e6a&request_guid=423b2eb8-6e52-45e0-a939-77e565beefb0 HTTP/1.1" 200 1800 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838bf-0502-afee-1a4b-0303c5c2b75f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838bf-0502-afee-1a4b-0303c5c2b75f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: c11c17d1-3545-4b11-86b1-2dfcd3bdcb25 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 158b0fae-fe1f-49b2-ac23-40bf08805db4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c11c17d1-3545-4b11-86b1-2dfcd3bdcb25&request_guid=158b0fae-fe1f-49b2-ac23-40bf08805db4 HTTP/1.1" 200 2280 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838bf-0502-b1d6-1a4b-0303c5c2c10b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838bf-0502-b1d6-1a4b-0303c5c2c10b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838bf-0502-b1d6-1a4b-0303c5c2c10b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9ef7c58a-5f76-441b-abae-06a35cfcb15d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838bf-0502-b1d6-1a4b-0303c5c2c10b?request_guid=9ef7c58a-5f76-441b-abae-06a35cfcb15d HTTP/1.1" 200 1680 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838bf-0502-b1d6-1a4b-0303c5c2c10b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7c2101f4-33ab-4867-ba3f-7e589ae1bbaf +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838bf-0502-b1d6-1a4b-0303c5c2c10b?request_guid=7c2101f4-33ab-4867-ba3f-7e589ae1bbaf HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838bf-0502-b1d6-1a4b-0303c5c2c10b'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 92200dbe-f346-402f-ad64-3aeb9ea63843 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838bf-0502-b1d6-1a4b-0303c5c2c10b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838bf-0502-b1d6-1a4b-0303c5c2c10b'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7f000768-9d51-483d-b07b-ecb29c8d6162 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=92200dbe-f346-402f-ad64-3aeb9ea63843&request_guid=7f000768-9d51-483d-b07b-ecb29c8d6162 HTTP/1.1" 200 2284 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838bf-0502-afee-1a4b-0303c5c2b78f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838bf-0502-afee-1a4b-0303c5c2b78f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 24.49s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=40b35ebe-f90d-40ac-ad6b-756595d81679 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 316da39f-bd7e-4c9c-a084-d41870ed3a6a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=40b35ebe-f90d-40ac-ad6b-756595d81679&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=316da39f-bd7e-4c9c-a084-d41870ed3a6a HTTP/1.1" 200 1545 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: da19a41a-a180-40e6-b33a-b27d6949686c +DEBUG:snowflake.connector.cursor:running query [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a968fb20-3fa8-4db9-a1e9-5e41377cbb37 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=da19a41a-a180-40e6-b33a-b27d6949686c&request_guid=a968fb20-3fa8-4db9-a1e9-5e41377cbb37 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838c0-0502-ae87-1a4b-0303c5c2e017 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838c0-0502-ae87-1a4b-0303c5c2e017 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=56 +INFO:snowflake.connector.cursor:Number of results in first chunk: 242 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838c0-0502-ae87-1a4b-0303c5c2e017' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 58a529d3-aecb-44bc-a841-56475fbfbb12 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838c0-0502-ae87-1a4b-0303c5c2e017?request_guid=58a529d3-aecb-44bc-a841-56475fbfbb12 HTTP/1.1" 200 2151 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838c0-0502-ae87-1a4b-0303c5c2e017' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 52a52e76-20d9-43c2-9b94-8064fe52d2d6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838c0-0502-ae87-1a4b-0303c5c2e017?request_guid=52a52e76-20d9-43c2-9b94-8064fe52d2d6 HTTP/1.1" 200 2152 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838c0-0502-ae87-1a4b-0303c5c2e017'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 7f039223-5e28-4465-aa2f-fee004df8679 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838c0-0502-ae87-1a4b-0303c5c2e017'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838c0-0502-ae87-1a4b-0303c5c2e017'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8f752643-eba0-4fad-81e2-f70a8aad67f6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7f039223-5e28-4465-aa2f-fee004df8679&request_guid=8f752643-eba0-4fad-81e2-f70a8aad67f6 HTTP/1.1" 200 4939 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838c0-0502-ae87-1a4b-0303c5c2e0bb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838c0-0502-ae87-1a4b-0303c5c2e0bb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=57 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_2_3 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_2_4 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_2_5 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_2_6 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_3_0 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_3_4 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_3_5 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_3_6 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_4_4 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_4_6 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_4_7 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_5_0 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_5_1 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_5_2 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_5_3 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_5_4 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_6_0 +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_6_1 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_6_2 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_6_6 +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_7_0 +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_7_1 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 57 has id: data_0_7_6 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=YWW%2FYdXm%2F1%2BemFePPij7CkbTvgo%3D HTTP/1.1" 200 264297 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=USV4YoFSMbjbwizgHCw7JtGn2nI%3D HTTP/1.1" 200 133478 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=1wQibQ0e%2FIukgWLuY7agzFypUbU%3D HTTP/1.1" 200 35090 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=ZvUY%2BZuaD5iwyp1h3TYzD9NsJoA%3D HTTP/1.1" 200 465916 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=zLxmzqFPPKCB%2BUY5Kr6mYVcHwE4%3D HTTP/1.1" 200 964549 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=KkYQ1%2F4ey%2BuUHix8agtfSBztEpQ%3D HTTP/1.1" 200 1747853 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=RCU0au1p6cxGeIngWx%2F%2FSLZz%2B2g%3D HTTP/1.1" 200 264690 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=SzUKQ5FZeHQRrm9bUIjlJqxcZk0%3D HTTP/1.1" 200 35019 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 993 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1982 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=VmCxTvupIVdz0FzJ%2FKbJAiyTOKk%3D HTTP/1.1" 200 133377 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=6lCEFjgwF7hSPbEt6Ewqt2RGM64%3D HTTP/1.1" 200 261719 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2546 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2535 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2545 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1911 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=oA0n96sPFdWw05SSo%2BGlv2fHVp8%3D HTTP/1.1" 200 466986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=5x%2B462nShjZVB3YiaG8vdjZuozg%3D HTTP/1.1" 200 969217 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=qsvCulZcGrdxPgLhwrMFFlEAR%2FI%3D HTTP/1.1" 200 1734762 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=AptgBu32jGjOkFvHanI8jcSoSRQ%3D HTTP/1.1" 200 2186834 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 990 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=TWCzo3pd7wfP17%2FHHAc%2FGhmVLz8%3D HTTP/1.1" 200 33636 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 989 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=FSO8GCDZbMiztNFa%2FEj%2B0ijw9Ko%3D HTTP/1.1" 200 129595 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2513 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=GpybmF%2F7gvP8fq%2FYkr8ByJjggXQ%3D HTTP/1.1" 200 256381 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2520 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2516 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=CywG%2FW9vdrjE%2FpwpJxwXzBIW02I%3D HTTP/1.1" 200 462463 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2535 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2531 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 527 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=btN5sufvKSXXBnZ4yDJ3%2BmwP%2B5s%3D HTTP/1.1" 200 967630 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=%2BYfuBVFoQb814sCUjDkHelcsQl0%3D HTTP/1.1" 200 131960 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=fz9%2FCZAIRjyN%2BLLJ8BoKZdw58NQ%3D HTTP/1.1" 200 1757664 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=izvMresntng1xtQUxgdspf7Bh6Y%3D HTTP/1.1" 200 34661 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=%2BBqeqv3LVx8FD2rkZbKpMULBvao%3D HTTP/1.1" 200 133017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2523 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=gUOOk2pWzTBPD9P%2B%2B8sm%2BuCtt3Q%3D HTTP/1.1" 200 262868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2541 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2536 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2522 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 975 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 249 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=qZHICnuC%2FWc0I1TKGC4oeNJ1Pxk%3D HTTP/1.1" 200 464439 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_6 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=1ry0GON1RtC8GPl0m0WeclThJCE%3D HTTP/1.1" 200 962759 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=Hy7o%2BW0FPDuW7rdEHzT8lC2oRrI%3D HTTP/1.1" 200 1740120 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 497 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=iHfz1NRO%2FAnHByZ8TT998m8%2BJK4%3D HTTP/1.1" 200 1208430 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 993 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=nRRujq%2FzfhdfemQEnzbxGh1Pez0%3D HTTP/1.1" 200 34475 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1986 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=G9sc9UOGVViyRVIpOXZ0Rd2tyEQ%3D HTTP/1.1" 200 131285 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1971 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2529 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=HM77aKbOFrj4jrRU10d0XrRQnAU%3D HTTP/1.1" 200 259963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2531 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2532 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2517 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=6RgNyESBXlMSZAZfyfwAwMI8wog%3D HTTP/1.1" 200 464061 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2539 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2526 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1125 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 249 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=sqHsXS0G3kT4fDANGOwbHSpmlO4%3D HTTP/1.1" 200 963245 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=Twus3n3yI8UdtlFQfGtj87WrVlg%3D HTTP/1.1" 200 1763257 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=NHxorWI%2BPN6on9LJHLL4hjXoGUI%3D HTTP/1.1" 200 3288578 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 991 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=kzVE4OxfKAnI0wI%2BVfnLiZWt1Bo%3D HTTP/1.1" 200 1193681 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 993 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1985 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1982 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=eKFCZBpKbFavYX0RGit3gynIcEY%3D HTTP/1.1" 200 34825 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=dCb6z9CZMQjOE%2BfHHSScR%2BzXJX4%3D HTTP/1.1" 200 132770 +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2518 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2523 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2517 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_2 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 9 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 9, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2529 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=fzYpS4JJKplvt%2F2zmkCidJ3a6NA%3D HTTP/1.1" 200 261281 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2515 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2542 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2538 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2533 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2544 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=NzxQAbKmA6vPveAFj6LQrpUi4B4%3D HTTP/1.1" 200 463548 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2542 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 612 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=g7hJQnI%2FGd89DSQoHcJxTd5iFtw%3D HTTP/1.1" 200 962977 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=t3n%2B0QavijAolREV7rMS7nhzNNo%3D HTTP/1.1" 200 1755693 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=SoW2AtYPjwEi8efnx%2FrwH%2FNUTJY%3D HTTP/1.1" 200 150579 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=bElCpaPTiPuRl83Ci2TI6%2FS3N1k%3D HTTP/1.1" 200 35016 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=d5VyvL0BQXHGrFOL%2BQTQYT3XjP4%3D HTTP/1.1" 200 133248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 41 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 42 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 42 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2523 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=m10ekMCC%2FtKgafxTqqA09ShqpIE%3D HTTP/1.1" 200 264485 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2539 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2526 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 42 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 43 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 43 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1089 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 43 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 44 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 44 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 44 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 45 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 45 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=li4F3nVoEqEWUzc6hEPRdA3bKmM%3D HTTP/1.1" 200 468013 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 45 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 46 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 46 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=2%2BxDUs2P3Ok8unI46u%2Fo%2BQjV7p8%3D HTTP/1.1" 200 967057 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=5%2BofjWmat1%2BKl2nBd3fm5XkXcTc%3D HTTP/1.1" 200 1752141 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 46 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 47 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=JJz%2BTZfZ8FIT4H7%2BQnCXucbyIP0%3D HTTP/1.1" 200 2117103 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 47 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=f8A8NhNs%2FmvBtIbcbaKxMSy0lek%3D HTTP/1.1" 200 35021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 991 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 47 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 48 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 48 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=XUwhAXeoUY0eejaJpKvvbaTx3cE%3D HTTP/1.1" 200 133249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 48 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 49 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 49 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2524 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=ZVRMhM0HvucsrVmJdjBAxYIlLsM%3D HTTP/1.1" 200 263313 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2542 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2541 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2524 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 49 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 50 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 50 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2515 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=x2h5gS3SVpeROzzqi6LgN31pcPI%3D HTTP/1.1" 200 465199 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2523 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2534 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 50 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 51 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 51 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 51 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 52 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 52 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_5 with existing session +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 52 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 53 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=Va9HED%2FWryi67XcG3qaTBAWBzjw%3D HTTP/1.1" 200 966941 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 53 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=alX9Sa%2FlvDgJTznz3OtsO30jnms%3D HTTP/1.1" 200 1756606 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129130&Signature=baw%2BUfofA5dQWJzIxA0SyZp7WMw%3D HTTP/1.1" 200 238425 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 53 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 54 +DEBUG:snowflake.connector.result_set:user began consuming result batch 54 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 54 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 55 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 55 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1981 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 55 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 56 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 56 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2520 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2525 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2540 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2534 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2519 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 56 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 57 +DEBUG:snowflake.connector.result_set:user began consuming result batch 57 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1710 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 57 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ab0f5860-108a-4d7b-bd61-bf672d988cfd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=ab0f5860-108a-4d7b-bd61-bf672d988cfd HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=95556e15-873e-4cda-9b37-bc640920a2fa +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 07bcc01d-3706-4d6a-ac72-7919fdf842d4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=95556e15-873e-4cda-9b37-bc640920a2fa&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=07bcc01d-3706-4d6a-ac72-7919fdf842d4 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 6250604b-507d-46fd-8e13-a03eb85203db +DEBUG:snowflake.connector.cursor:running query [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 410599ab-814b-48c4-85c2-c4152d30b93f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6250604b-507d-46fd-8e13-a03eb85203db&request_guid=410599ab-814b-48c4-85c2-c4152d30b93f HTTP/1.1" 200 2291 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838c2-0502-ae87-1a4b-0303c5c386a3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838c2-0502-ae87-1a4b-0303c5c386a3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838c2-0502-ae87-1a4b-0303c5c386a3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: dfab62f0-6db4-4521-949a-46723ce02e9c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838c2-0502-ae87-1a4b-0303c5c386a3?request_guid=dfab62f0-6db4-4521-949a-46723ce02e9c HTTP/1.1" 200 1975 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838c2-0502-ae87-1a4b-0303c5c386a3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 93d378b6-58db-453a-b84e-1500d59e37d6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838c2-0502-ae87-1a4b-0303c5c386a3?request_guid=93d378b6-58db-453a-b84e-1500d59e37d6 HTTP/1.1" 200 1975 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838c2-0502-ae87-1a4b-0303c5c386a3'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 0b439700-5612-4187-85aa-f70d639c32c1 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838c2-0502-ae87-1a4b-0303c5c386a3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838c2-0502-ae87-1a4b-0303c5c386a3'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 960c289a-fffd-4971-8b1c-9e0bffae0222 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0b439700-5612-4187-85aa-f70d639c32c1&request_guid=960c289a-fffd-4971-8b1c-9e0bffae0222 HTTP/1.1" 200 2306 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838c2-0502-ae87-1a4b-0303c5c386ef +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838c2-0502-ae87-1a4b-0303c5c386ef +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129275&Signature=UplxaHzFqDvYc%2BH9C2GO0b9sySU%3D HTTP/1.1" 200 39942 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129275&Signature=WePj8vPoskXrZ9Sg3HJYGVhDuVM%3D HTTP/1.1" 200 36830 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129275&Signature=JTKh8wFgX%2FXrsglzurJi8oBc2vk%3D HTTP/1.1" 200 137002 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 246 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 246 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 282 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.telemetry:Sending 1 logs to telemetry. Data is {'logs': [{'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_imported_packages', 'value': "{'reprlib', 'xml', 'shlex', 'random', 'builtins', 'quopri', 'sql', 'typing', 'OpenSSL', 'pydevd', 'pyexpat', 'pandas', 'pydoc', 'tokenize', 'idna', 'tempfile', 'shutil', 'html', 'heapq', 'ast', 'zipimport', 'keyword', 'getpass', 'decimal', 'hashlib', 'pkg_resources', 'cffi', 'abc', 'urllib', 'mako', 'enum', 'alembic', 'email', 'pydevd_plugins', 'numpy', 'markupsafe', 'function', 'traceback', 'flask_wtf', 'pkgutil', 'gc', 'fractions', 'config', 'jinja2', 'contextvars', 'sys', 'overrides', 'importlib', 'pytz', 'queue', 'types', 'ctypes', 'cython_runtime', 'itsdangerous', 'pydevconsole', 'Cryptodome', 'operator', 'http', 'json', 'asn1crypto', 'marshal', 'sqlalchemy', 'pydevd_file_utils', 'sqlite3', 'linecache', 'unicodedata', 'debugpy', 'socket', 'zipfile', 'six', 'numbers', 'opcode', 'colorama', 'sre_compile', 'pycparser', 'bisect', 'gettext', 'cmath', 'typing_extensions', 'csv', 'cachelib', 'code', 'zlib', 'contextlib', 'pathlib', 'genericpath', 'functools', 'locale', 'secrets', 'sysconfig', 'stringprep', 'pydev_ipython', 'nt', 'collections', 'encodings', 'select', 'weakref', 'urllib3', 'warnings', 'xmlrpc', 'string', 'copy', 'timeit', 'errno', 'fconfig', 'bz2', 'flask_sqlalchemy', 'flask_migrate', 'configparser', 'copyreg', 'ssl', 'site', 'token', 'subprocess', 'requests', 'concurrent', 'time', 'msvcrt', 'psycopg2', 'certifi', 'mimetypes', 'posixpath', 'nturl2path', 'io', 'platform', 'werkzeug', 'datetime', 'itertools', 'stat', 'atexit', 'socketserver', 'argparse', 'gzip', 'logging', 'pydevd_tracing', 'snowflake', 'greenlet', 'wtforms', 'mmap', 'base64', 'lzma', 'pprint', 'flask_session', 'codeop', 'os', 'calendar', 'oscrypto', 'uuid', 'glob', 'click', 'dis', 'codecs', 'sre_parse', 'common', 'ipaddress', 'dateutil', 'winreg', 'selectors', 'flask', 'inspect', 'uu', 'ntpath', 'sre_constants', 'signal', 'threading', 'asyncio', 'pickle', 're', 'binascii', 'hmac', 'fnmatch', 'cryptography', 'imp', 'dataclasses', 'struct', 'textwrap', 'difflib', 'charset_normalizer', 'plistlib', 'math', 'filelock', 'jwt', 'webbrowser'}"}, 'timestamp': '1668107496622'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838bf-0502-af26-1a4b-0303c5c2a783', 'value': -742}, 'timestamp': '1668107499354'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838bf-0502-afee-1a4b-0303c5c2b737', 'value': -742}, 'timestamp': '1668107499801'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a838bf-0502-afee-1a4b-0303c5c2b737', 'value': 5}, 'timestamp': '1668107499806'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838bf-0502-af26-1a4b-0303c5c2a7b3', 'value': -742}, 'timestamp': '1668107500453'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838bf-0502-afee-1a4b-0303c5c2b75f', 'value': -742}, 'timestamp': '1668107500815'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a838bf-0502-afee-1a4b-0303c5c2b75f', 'value': 3}, 'timestamp': '1668107500818'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838bf-0502-b1d6-1a4b-0303c5c2c10b', 'value': -743}, 'timestamp': '1668107500941'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838bf-0502-afee-1a4b-0303c5c2b78f', 'value': -742}, 'timestamp': '1668107501421'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a838bf-0502-afee-1a4b-0303c5c2b78f', 'value': 3}, 'timestamp': '1668107501424'}]}. +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6a750d1d-6cd8-4690-bbc5-de2b45672f1b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /telemetry/send?request_guid=6a750d1d-6cd8-4690-bbc5-de2b45672f1b HTTP/1.1" 200 86 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.telemetry:Successfully uploading metrics to telemetry. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a63379d3-dcff-41b9-a77e-6c1f83278c34 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=a63379d3-dcff-41b9-a77e-6c1f83278c34 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.telemetry:Sending 1 logs to telemetry. Data is {'logs': [{'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_imported_packages', 'value': "{'reprlib', 'xml', 'shlex', 'random', 'builtins', 'quopri', 'sql', 'typing', 'OpenSSL', 'pydevd', 'pyexpat', 'pandas', 'pydoc', 'tokenize', 'idna', 'tempfile', 'shutil', 'html', 'heapq', 'ast', 'zipimport', 'keyword', 'getpass', 'decimal', 'hashlib', 'pkg_resources', 'cffi', 'abc', 'urllib', 'mako', 'enum', 'alembic', 'email', 'pydevd_plugins', 'numpy', 'markupsafe', 'function', 'traceback', 'flask_wtf', 'pkgutil', 'gc', 'fractions', 'config', 'jinja2', 'contextvars', 'sys', 'overrides', 'importlib', 'pytz', 'queue', 'types', 'ctypes', 'cython_runtime', 'itsdangerous', 'pydevconsole', 'Cryptodome', 'operator', 'http', 'json', 'asn1crypto', 'marshal', 'sqlalchemy', 'pydevd_file_utils', 'sqlite3', 'linecache', 'unicodedata', 'debugpy', 'socket', 'zipfile', 'six', 'numbers', 'opcode', 'colorama', 'sre_compile', 'pycparser', 'bisect', 'gettext', 'cmath', 'typing_extensions', 'csv', 'cachelib', 'code', 'zlib', 'contextlib', 'pathlib', 'genericpath', 'functools', 'locale', 'secrets', 'sysconfig', 'stringprep', 'pydev_ipython', 'nt', 'collections', 'encodings', 'select', 'weakref', 'urllib3', 'warnings', 'xmlrpc', 'string', 'copy', 'timeit', 'errno', 'fconfig', 'bz2', 'flask_sqlalchemy', 'flask_migrate', 'configparser', 'copyreg', 'ssl', 'site', 'token', 'subprocess', 'requests', 'concurrent', 'time', 'msvcrt', 'psycopg2', 'certifi', 'mimetypes', 'posixpath', 'nturl2path', 'io', 'platform', 'werkzeug', 'datetime', 'itertools', 'stat', 'atexit', 'socketserver', 'argparse', 'gzip', 'logging', 'pydevd_tracing', 'snowflake', 'greenlet', 'wtforms', 'mmap', 'base64', 'lzma', 'pprint', 'flask_session', 'codeop', 'os', 'calendar', 'oscrypto', 'uuid', 'glob', 'click', 'dis', 'codecs', 'sre_parse', 'common', 'ipaddress', 'dateutil', 'winreg', 'selectors', 'flask', 'inspect', 'uu', 'ntpath', 'sre_constants', 'signal', 'threading', 'asyncio', 'pickle', 're', 'binascii', 'hmac', 'fnmatch', 'cryptography', 'imp', 'dataclasses', 'struct', 'textwrap', 'difflib', 'charset_normalizer', 'plistlib', 'math', 'filelock', 'jwt', 'webbrowser'}"}, 'timestamp': '1668107498542'}]}. +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4fd2811e-383b-47b9-bb0e-a71b564c79fb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /telemetry/send?request_guid=4fd2811e-383b-47b9-bb0e-a71b564c79fb HTTP/1.1" 200 86 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.telemetry:Successfully uploading metrics to telemetry. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e9d36888-5fd3-49ee-a729-9a94dc94eac5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=e9d36888-5fd3-49ee-a729-9a94dc94eac5 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:14:41] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&submit=Submit HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:14:42] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:14:42] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:14:42] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:14:43] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:14:44] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:14:44] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:14:44] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:14:44] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:14:44] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:14:44] "GET /js/main.js HTTP/1.1" 404 - +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.89s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.895s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 9.902s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=7000f84d-ed40-452d-bfde-a461341ad9a2 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4514a500-87bd-4242-aa12-af21c365dece +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2512429078304 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2512429078304 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2512429396656 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2512429396656 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2512429396656 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2512429396656 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2512429078304 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2512429078304 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=7000f84d-ed40-452d-bfde-a461341ad9a2&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=4514a500-87bd-4242-aa12-af21c365dece HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=bf0fcc7d-afec-4a3c-af86-0f9872e3f4b0 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ed6550bd-4cc7-4798-afc7-f2f683787fc3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=bf0fcc7d-afec-4a3c-af86-0f9872e3f4b0&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=ed6550bd-4cc7-4798-afc7-f2f683787fc3 HTTP/1.1" 200 1545 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00204s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 68c4674f-7cdd-40ff-87aa-63bae27b05ff +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 908ad1cc-67fa-450a-b7a1-5e4b8c709286 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=68c4674f-7cdd-40ff-87aa-63bae27b05ff&request_guid=908ad1cc-67fa-450a-b7a1-5e4b8c709286 HTTP/1.1" 200 2280 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838c5-0502-afee-1a4b-0303c5c4971b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838c5-0502-afee-1a4b-0303c5c4971b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838c5-0502-afee-1a4b-0303c5c4971b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 09c94517-83df-4a69-8329-e0eb2d55edd6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838c5-0502-afee-1a4b-0303c5c4971b?request_guid=09c94517-83df-4a69-8329-e0eb2d55edd6 HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838c5-0502-afee-1a4b-0303c5c4971b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6cdea02d-804f-492a-88d0-14c40e63b08b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838c5-0502-afee-1a4b-0303c5c4971b?request_guid=6cdea02d-804f-492a-88d0-14c40e63b08b HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838c5-0502-afee-1a4b-0303c5c4971b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: a142025c-976d-413f-9043-63a071a6ce77 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838c5-0502-afee-1a4b-0303c5c4971b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838c5-0502-afee-1a4b-0303c5c4971b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a9547e8a-d4c5-472c-bcdf-f227dd8a3860 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a142025c-976d-413f-9043-63a071a6ce77&request_guid=a9547e8a-d4c5-472c-bcdf-f227dd8a3860 HTTP/1.1" 200 2275 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838c5-0502-b1d6-1a4b-0303c5c4a0cb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838c5-0502-b1d6-1a4b-0303c5c4a0cb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 99246b01-1822-41c4-a6c7-7eba197ebd4a +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 909f9d91-3cde-4cc3-bb69-b975c99a6fe9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=99246b01-1822-41c4-a6c7-7eba197ebd4a&request_guid=909f9d91-3cde-4cc3-bb69-b975c99a6fe9 HTTP/1.1" 200 1798 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838c5-0502-b1d6-1a4b-0303c5c4a0cf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838c5-0502-b1d6-1a4b-0303c5c4a0cf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838c5-0502-b1d6-1a4b-0303c5c4a0cf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b30eaf91-6ed5-4cc7-ab20-20037c5a27b9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838c5-0502-b1d6-1a4b-0303c5c4a0cf?request_guid=b30eaf91-6ed5-4cc7-ab20-20037c5a27b9 HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838c5-0502-b1d6-1a4b-0303c5c4a0cf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 169cd707-efb6-4324-ae10-07adeded1cdb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838c5-0502-b1d6-1a4b-0303c5c4a0cf?request_guid=169cd707-efb6-4324-ae10-07adeded1cdb HTTP/1.1" 200 2170 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838c5-0502-b1d6-1a4b-0303c5c4a0cf'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 16f338e2-3d71-44a0-910f-55b523f182b7 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838c5-0502-b1d6-1a4b-0303c5c4a0cf'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838c5-0502-b1d6-1a4b-0303c5c4a0cf'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f76ae6ee-ee3d-4e29-8162-dcf43bcf385d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=16f338e2-3d71-44a0-910f-55b523f182b7&request_guid=f76ae6ee-ee3d-4e29-8162-dcf43bcf385d HTTP/1.1" 200 1796 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838c5-0502-b0de-1a4b-0303c5c4b187 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838c5-0502-b0de-1a4b-0303c5c4b187 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: bcca1a92-a545-4c8e-be0d-1b3124eab4dc +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5b38b371-08ed-4320-8221-ac2405b9d53b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=bcca1a92-a545-4c8e-be0d-1b3124eab4dc&request_guid=5b38b371-08ed-4320-8221-ac2405b9d53b HTTP/1.1" 200 2289 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838c5-0502-ae87-1a4b-0303c5c48adf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838c5-0502-ae87-1a4b-0303c5c48adf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838c5-0502-ae87-1a4b-0303c5c48adf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a61f1c3c-c8c2-47fc-97ca-97c309c3a875 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838c5-0502-ae87-1a4b-0303c5c48adf?request_guid=a61f1c3c-c8c2-47fc-97ca-97c309c3a875 HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838c5-0502-ae87-1a4b-0303c5c48adf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cee3f3b2-2146-4763-9001-4cbc654dfd7d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838c5-0502-ae87-1a4b-0303c5c48adf?request_guid=cee3f3b2-2146-4763-9001-4cbc654dfd7d HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838c5-0502-ae87-1a4b-0303c5c48adf'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 329f088f-c110-4fae-82db-7af2c51ff538 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838c5-0502-ae87-1a4b-0303c5c48adf'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838c5-0502-ae87-1a4b-0303c5c48adf'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 536d4ac2-ee21-4b40-922c-4854daa1a690 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=329f088f-c110-4fae-82db-7af2c51ff538&request_guid=536d4ac2-ee21-4b40-922c-4854daa1a690 HTTP/1.1" 200 2289 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838c5-0502-ae87-1a4b-0303c5c48af3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838c5-0502-ae87-1a4b-0303c5c48af3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 10.89s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=52fb8551-b780-4c3a-8091-4e15a5aabc1c +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 60e13fad-43a8-426c-a978-3e19b19a8232 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=52fb8551-b780-4c3a-8091-4e15a5aabc1c&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=60e13fad-43a8-426c-a978-3e19b19a8232 HTTP/1.1" 200 1544 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: d077eec8-be95-4db2-84cb-1cc8c7fd4b39 +DEBUG:snowflake.connector.cursor:running query [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b8554862-0290-486a-ad3e-b730bfd45ddd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d077eec8-be95-4db2-84cb-1cc8c7fd4b39&request_guid=b8554862-0290-486a-ad3e-b730bfd45ddd HTTP/1.1" 200 4956 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838c5-0502-afee-1a4b-0303c5c49ac7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838c5-0502-afee-1a4b-0303c5c49ac7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=57 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838c5-0502-afee-1a4b-0303c5c49ac7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9650b3e2-a8a1-4d06-861a-0a7e2e255417 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838c5-0502-afee-1a4b-0303c5c49ac7?request_guid=9650b3e2-a8a1-4d06-861a-0a7e2e255417 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838c5-0502-afee-1a4b-0303c5c49ac7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 754b00b1-5da4-4d95-8940-b859526559bc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838c5-0502-afee-1a4b-0303c5c49ac7?request_guid=754b00b1-5da4-4d95-8940-b859526559bc HTTP/1.1" 200 1976 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838c5-0502-afee-1a4b-0303c5c49ac7'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: c0f4d216-1d0b-4642-bc63-9e37f6894674 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838c5-0502-afee-1a4b-0303c5c49ac7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838c5-0502-afee-1a4b-0303c5c49ac7'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e898eb55-7423-497f-891c-7a3f34ecdaac +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c0f4d216-1d0b-4642-bc63-9e37f6894674&request_guid=e898eb55-7423-497f-891c-7a3f34ecdaac HTTP/1.1" 200 4933 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838c5-0502-b0de-1a4b-0303c5c4b44f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838c5-0502-b0de-1a4b-0303c5c4b44f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=57 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_2_3 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_2_4 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_2_5 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_2_6 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_3_0 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_3_4 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_3_5 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_3_6 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_4_4 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_4_6 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_4_7 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_5_0 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_5_1 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_5_2 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_5_3 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_5_4 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_6_0 +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_6_1 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_6_2 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_6_6 +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_7_0 +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_7_1 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 57 has id: data_0_7_6 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=V%2BqYPBcpM9HJ%2BnZPPcLmTzo6hlU%3D HTTP/1.1" 200 35090 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=L1pgCU1dOjvVaW62%2FUhbn95fClk%3D HTTP/1.1" 200 133478 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=EHCXNZAKuaaO7644Ij1bZg0jQgo%3D HTTP/1.1" 200 465916 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=gp9eiWYo0eRaGkHf9cRQngTbCgE%3D HTTP/1.1" 200 264297 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=Oc3251qWcPGrsYDAK3BLPL%2BcTes%3D HTTP/1.1" 200 964549 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=O%2BzpGpAcZv%2BhGWRW3k%2BKyRWCcUM%3D HTTP/1.1" 200 1747853 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=OufICr0qRRCZun%2BUys7PzAq%2BpyY%3D HTTP/1.1" 200 264690 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 993 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=IElXwkCyxYs4H%2B9xpGnhLEz%2BTe4%3D HTTP/1.1" 200 35019 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1982 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=wNUqKz%2FxHnf6xNtslV3NKNxavm0%3D HTTP/1.1" 200 133377 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2529 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=lkoiHiHqzdNejcEaZ0R9Xdf%2FsMA%3D HTTP/1.1" 200 261719 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2546 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2535 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2545 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1911 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=oImGN1joJnlFhYbtk5fL9LnUogY%3D HTTP/1.1" 200 466986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=vLz%2BpN%2FypwYmYzB9UW9jskZ%2B9Q8%3D HTTP/1.1" 200 969217 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=w2Vl6gSpbSxJj2RQorFU74Up0Vc%3D HTTP/1.1" 200 1734762 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=cZfHLSlMzIrTbhR54w2upAvP6ws%3D HTTP/1.1" 200 2186834 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 990 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=5Xd17pU66BENPQhP4vABwU9ZmOk%3D HTTP/1.1" 200 33636 +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 989 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=6oJuLohemZmD%2BCCSthTwiG0skPg%3D HTTP/1.1" 200 129595 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2513 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=h2uCGtfBXZF7paFkb%2Fv2foJY1DE%3D HTTP/1.1" 200 256381 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2520 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2516 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=6Jvt84YCLnMRk1YScyrUPCYfOiQ%3D HTTP/1.1" 200 462463 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2535 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2531 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 527 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=0nEdvUYijMCBC47XkVBnD8lYM3U%3D HTTP/1.1" 200 967630 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=HlOHwmHOHAN%2BfRZjFNU5hDuHdRs%3D HTTP/1.1" 200 1757664 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=wUH9nDMqlUI6uljWLT5P3BH1VLs%3D HTTP/1.1" 200 131960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=g4zOpK4C9EHUKqdK4chH1jCplvA%3D HTTP/1.1" 200 34661 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=DD7QOUHyL6GgWdavHF8dTIxVpzY%3D HTTP/1.1" 200 133017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2523 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=Y67yV9LRuc3lsT3IY0Kt5i%2Bxy1c%3D HTTP/1.1" 200 262868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2541 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2536 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2522 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 975 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_5 with existing session +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 249 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=NMkHVYZrUeQBq4SWIFUmOgQMGnQ%3D HTTP/1.1" 200 464439 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 249 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 497 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=C%2F5yoVnd0LWq36pgSsNOotKHNaA%3D HTTP/1.1" 200 962759 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=QRHQl2JbmO1z%2FYP4pwN4r4OrehU%3D HTTP/1.1" 200 1740120 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_0 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 993 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=3qWnEbmHuRCgSfqDOaMTnvKSYT0%3D HTTP/1.1" 200 1208430 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 993 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=45X4qvRbZudi8Hr%2FWNAFsWBvNVA%3D HTTP/1.1" 200 34475 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1986 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=GVdJyAmJDIpWlQ99hzKE7x7mQHE%3D HTTP/1.1" 200 131285 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1971 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2529 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=764TJ11CDJCJUX2RPRu2%2Bghak%2FQ%3D HTTP/1.1" 200 259963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2531 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2532 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2517 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2539 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=GGHJF4mxeX%2FCidLKflptczEOTdI%3D HTTP/1.1" 200 464061 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2526 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1125 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 249 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=TCyIM131ibiuVYDJ1XBSK%2B%2BjVdk%3D HTTP/1.1" 200 963245 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=JpSgDD05n9MdZHUKAGZ%2F9JOyZpM%3D HTTP/1.1" 200 1763257 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 991 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=3tL3cJle9qKOy%2F3r9oyQFI7itf4%3D HTTP/1.1" 200 3288578 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=7yTzLcSoEPoigv%2B8ZJ7aDlk5sQw%3D HTTP/1.1" 200 1193681 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 993 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1982 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=0f6LjUE8hf%2B%2BJoV2ak5zsbDn4Lg%3D HTTP/1.1" 200 34825 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1985 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1982 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2518 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2523 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=AevzaNjZuywKI4oYJ4RynuYbtRg%3D HTTP/1.1" 200 132770 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2517 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 9 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 9 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=mlZXHOPaDE1GcoxFVjUOEmVd5dE%3D HTTP/1.1" 200 261281 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 9, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2515 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2542 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2538 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2533 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2544 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2542 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=eg1djsR95zc851v34uJ48nh%2FKyY%3D HTTP/1.1" 200 463548 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 612 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=QVbLnwtcjqau2DOOJQw9FysrYUc%3D HTTP/1.1" 200 962977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=T8yUxwtBEf5B09pMkHUPqtNswVI%3D HTTP/1.1" 200 1755693 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=U2ZrqBHoGPQoyo59BTV3FtxgUNg%3D HTTP/1.1" 200 150579 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=v08BLqBiPv9Rj3avrEYBTlvAt2A%3D HTTP/1.1" 200 35016 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=soawKMowMKFeXy5k7kUrb7ZARvQ%3D HTTP/1.1" 200 133248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 41 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 42 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 42 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2523 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=eckEPe3KlZ2WbB4FznblwIB%2FIIM%3D HTTP/1.1" 200 264485 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2539 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2526 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 42 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 43 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 43 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1089 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 43 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 44 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 44 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 44 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_4 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 45 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 45 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 45 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 46 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 46 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=WkgRyypmLjy%2F79tyYjJ%2Beai8SAg%3D HTTP/1.1" 200 468013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=hv9yCA%2BzxVwoxbHXYNTFxUIsH7w%3D HTTP/1.1" 200 967057 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=N6J9DXjqw7T5S7Sd%2Fx%2FzpGYkpLc%3D HTTP/1.1" 200 1752141 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 46 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 47 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 47 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=YMQwDGE2PTlEmMHv2HswA45KYh0%3D HTTP/1.1" 200 2117103 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 991 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 47 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=HFbGYCvG3bIE86PeLZhY9Z0ehaI%3D HTTP/1.1" 200 35021 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 48 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 48 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=0WQhWbj6UIB0Lg2jjBnwyIVuC1I%3D HTTP/1.1" 200 133249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 48 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 49 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 49 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2524 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=1y2TmTYrjKBM20L25%2BqIzT%2Bkmac%3D HTTP/1.1" 200 263313 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2542 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2541 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2524 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 49 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 50 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_3 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 50 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2521 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=LAFh9Lf61wF2diO%2FAkpkGz%2BWJO8%3D HTTP/1.1" 200 465199 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2515 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2523 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2537 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2534 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 50 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 51 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 51 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 51 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 52 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 52 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 52 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=kfS8dclmG6Rky%2BQlWEGuMEWg%2FeQ%3D HTTP/1.1" 200 966941 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 53 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 53 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=Tl91MTMhiDwEEGFTeBtGC4QrQ%2B4%3D HTTP/1.1" 200 1756606 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 53 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 54 +DEBUG:snowflake.connector.result_set:user began consuming result batch 54 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129476&Signature=2uNVORMBhvkYB3qqchbN4agd%2F1A%3D HTTP/1.1" 200 238425 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 54 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 55 +DEBUG:snowflake.connector.result_set:user began consuming result batch 55 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1981 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 55 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 56 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 56 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2520 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2525 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2540 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2534 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2519 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 56 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 57 +DEBUG:snowflake.connector.result_set:user began consuming result batch 57 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1710 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 57 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c851d3c4-6180-4f4a-8995-856156d16e71 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=c851d3c4-6180-4f4a-8995-856156d16e71 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=98a7ee12-8f63-4b4e-80ea-1be15b5a9f42 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1b19933a-7fd2-4d9f-9215-370f0ccfd493 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=98a7ee12-8f63-4b4e-80ea-1be15b5a9f42&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=1b19933a-7fd2-4d9f-9215-370f0ccfd493 HTTP/1.1" 200 1544 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: a6a07262-54c1-4751-bbf4-e4b8648f6d34 +DEBUG:snowflake.connector.cursor:running query [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ca70b96f-71be-4ccc-ab0b-6a98ae1d10c9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a6a07262-54c1-4751-bbf4-e4b8648f6d34&request_guid=ca70b96f-71be-4ccc-ab0b-6a98ae1d10c9 HTTP/1.1" 200 2296 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838c8-0502-af26-1a4b-0303c5c51c5b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838c8-0502-af26-1a4b-0303c5c51c5b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838c8-0502-af26-1a4b-0303c5c51c5b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e70aa87e-1236-49a1-8aae-9115600ea9b2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838c8-0502-af26-1a4b-0303c5c51c5b?request_guid=e70aa87e-1236-49a1-8aae-9115600ea9b2 HTTP/1.1" 200 1975 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838c8-0502-af26-1a4b-0303c5c51c5b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a32266ab-215a-47fb-a768-13d1ef13cffd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838c8-0502-af26-1a4b-0303c5c51c5b?request_guid=a32266ab-215a-47fb-a768-13d1ef13cffd HTTP/1.1" 200 1974 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838c8-0502-af26-1a4b-0303c5c51c5b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: e9b88625-e5c4-4951-a0ee-26e3f5cb7ab6 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838c8-0502-af26-1a4b-0303c5c51c5b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838c8-0502-af26-1a4b-0303c5c51c5b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 038b0aa8-0b48-4162-89ac-77f4c0a343f0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e9b88625-e5c4-4951-a0ee-26e3f5cb7ab6&request_guid=038b0aa8-0b48-4162-89ac-77f4c0a343f0 HTTP/1.1" 200 2301 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838c8-0502-b0de-1a4b-0303c5c5437f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838c8-0502-b0de-1a4b-0303c5c5437f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129614&Signature=cCeqftSk1WLhQJkqNu%2B5e2Janaw%3D HTTP/1.1" 200 36830 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129614&Signature=eRT5YrKlM6PaX1WP6PD08qrrwis%3D HTTP/1.1" 200 39942 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 246 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129614&Signature=bz%2BULdQaL%2BvB%2BQv5RmaQEET3LBM%3D HTTP/1.1" 200 137002 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 246 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 282 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 155.7s ago] ('minus_query', 1, 0) +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 114.2s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 114.2s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 114.3s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=4a962c3e-eab0-4c5a-8bff-f3f0c2125462 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2fda461e-0a4b-426a-ac9c-314d1970e337 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1420346692976 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1420346692976 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1420347011328 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1420347011328 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1420347011328 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1420347011328 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1420346692976 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1420346692976 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=4a962c3e-eab0-4c5a-8bff-f3f0c2125462&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=2fda461e-0a4b-426a-ac9c-314d1970e337 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=2bc71541-0d87-4b95-9e72-6da0377df0c0 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ee7ec933-3c45-4e0c-a72e-364f4bacd7d5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=2bc71541-0d87-4b95-9e72-6da0377df0c0&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=ee7ec933-3c45-4e0c-a72e-364f4bacd7d5 HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00155s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: ff8912c5-2637-4058-8be3-ffb640456944 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 961e4f4e-5dbc-40bc-bb12-b68af2b890e8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ff8912c5-2637-4058-8be3-ffb640456944&request_guid=961e4f4e-5dbc-40bc-bb12-b68af2b890e8 HTTP/1.1" 200 2278 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838ce-0502-afee-1a4b-0303c5c7118f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838ce-0502-afee-1a4b-0303c5c7118f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838ce-0502-afee-1a4b-0303c5c7118f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f0f6f796-d8bd-4b90-a7f6-bd6da9dc519b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838ce-0502-afee-1a4b-0303c5c7118f?request_guid=f0f6f796-d8bd-4b90-a7f6-bd6da9dc519b HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838ce-0502-afee-1a4b-0303c5c7118f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bb9f9b3e-622b-416c-b0f3-f384a610879d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838ce-0502-afee-1a4b-0303c5c7118f?request_guid=bb9f9b3e-622b-416c-b0f3-f384a610879d HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838ce-0502-afee-1a4b-0303c5c7118f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: a16ad17c-525e-404c-84cd-ebae988e9264 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838ce-0502-afee-1a4b-0303c5c7118f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838ce-0502-afee-1a4b-0303c5c7118f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f49d140d-3cc6-4e8e-98a9-24df8c5759ef +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a16ad17c-525e-404c-84cd-ebae988e9264&request_guid=f49d140d-3cc6-4e8e-98a9-24df8c5759ef HTTP/1.1" 200 2273 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838ce-0502-b1d6-1a4b-0303c5c73063 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838ce-0502-b1d6-1a4b-0303c5c73063 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 71ca66c8-1eb3-4899-9c89-691b60814829 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 23304284-65c2-425e-9a34-17d430d9a21a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=71ca66c8-1eb3-4899-9c89-691b60814829&request_guid=23304284-65c2-425e-9a34-17d430d9a21a HTTP/1.1" 200 1797 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838ce-0502-b1d6-1a4b-0303c5c73067 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838ce-0502-b1d6-1a4b-0303c5c73067 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838ce-0502-b1d6-1a4b-0303c5c73067' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bfc7add2-5923-4211-9a51-ab9d81d73b77 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838ce-0502-b1d6-1a4b-0303c5c73067?request_guid=bfc7add2-5923-4211-9a51-ab9d81d73b77 HTTP/1.1" 200 2172 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838ce-0502-b1d6-1a4b-0303c5c73067' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c61bc47c-fc32-4b47-a0b9-78dacb5b9d12 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838ce-0502-b1d6-1a4b-0303c5c73067?request_guid=c61bc47c-fc32-4b47-a0b9-78dacb5b9d12 HTTP/1.1" 200 2173 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838ce-0502-b1d6-1a4b-0303c5c73067'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 84468998-eb48-4b0d-98b5-23baf817e146 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838ce-0502-b1d6-1a4b-0303c5c73067'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838ce-0502-b1d6-1a4b-0303c5c73067'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ee6cae44-a434-4bcf-8849-aa328a405002 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=84468998-eb48-4b0d-98b5-23baf817e146&request_guid=ee6cae44-a434-4bcf-8849-aa328a405002 HTTP/1.1" 200 1796 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838ce-0502-af26-1a4b-0303c5c6f58b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838ce-0502-af26-1a4b-0303c5c6f58b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 0ddd770e-b42c-4253-9e29-d5ebd07ffa6e +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5a6f0856-f59b-4368-a0c2-2a22749500ce +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0ddd770e-b42c-4253-9e29-d5ebd07ffa6e&request_guid=5a6f0856-f59b-4368-a0c2-2a22749500ce HTTP/1.1" 200 2288 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838ce-0502-ae87-1a4b-0303c5c7029b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838ce-0502-ae87-1a4b-0303c5c7029b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838ce-0502-ae87-1a4b-0303c5c7029b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7b188af2-efbf-4c31-bf93-9fecb947f8ac +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838ce-0502-ae87-1a4b-0303c5c7029b?request_guid=7b188af2-efbf-4c31-bf93-9fecb947f8ac HTTP/1.1" 200 1682 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838ce-0502-ae87-1a4b-0303c5c7029b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 157ee9aa-3d82-4f10-bc09-5a89141206d9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838ce-0502-ae87-1a4b-0303c5c7029b?request_guid=157ee9aa-3d82-4f10-bc09-5a89141206d9 HTTP/1.1" 200 1682 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838ce-0502-ae87-1a4b-0303c5c7029b'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: b452f2d8-c97b-4608-ba86-3f290d2be844 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838ce-0502-ae87-1a4b-0303c5c7029b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838ce-0502-ae87-1a4b-0303c5c7029b'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8dff0bd2-0ff3-4955-9692-7cad3cdb3524 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b452f2d8-c97b-4608-ba86-3f290d2be844&request_guid=8dff0bd2-0ff3-4955-9692-7cad3cdb3524 HTTP/1.1" 200 2287 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838ce-0502-afee-1a4b-0303c5c711eb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838ce-0502-afee-1a4b-0303c5c711eb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 2.426s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=3279005d-7732-42f4-97fd-e07c1046aee7 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f7d6f608-99e3-47fd-afac-d80975030144 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=3279005d-7732-42f4-97fd-e07c1046aee7&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=f7d6f608-99e3-47fd-afac-d80975030144 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 7cd3e96b-af7f-4288-8ec5-b601bad6f1cf +DEBUG:snowflake.connector.cursor:running query [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 710452c9-b38c-4dcf-be8c-0b1d676b60d5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7cd3e96b-af7f-4288-8ec5-b601bad6f1cf&request_guid=710452c9-b38c-4dcf-be8c-0b1d676b60d5 HTTP/1.1" 200 4929 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838ce-0502-ae87-1a4b-0303c5c702f7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838ce-0502-ae87-1a4b-0303c5c702f7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=57 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838ce-0502-ae87-1a4b-0303c5c702f7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d9ffb458-f421-488c-9564-279cb046a1cd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838ce-0502-ae87-1a4b-0303c5c702f7?request_guid=d9ffb458-f421-488c-9564-279cb046a1cd HTTP/1.1" 200 1976 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838ce-0502-ae87-1a4b-0303c5c702f7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0ab975ea-2d12-4fb4-879a-1b7c0829ad1c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838ce-0502-ae87-1a4b-0303c5c702f7?request_guid=0ab975ea-2d12-4fb4-879a-1b7c0829ad1c HTTP/1.1" 200 1975 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838ce-0502-ae87-1a4b-0303c5c702f7'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: ed48c818-745f-4dde-9a4f-3814ffba08f1 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838ce-0502-ae87-1a4b-0303c5c702f7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838ce-0502-ae87-1a4b-0303c5c702f7'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ee484fa2-a80c-4f1f-8632-b8d319de7ff4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ed48c818-745f-4dde-9a4f-3814ffba08f1&request_guid=ee484fa2-a80c-4f1f-8632-b8d319de7ff4 HTTP/1.1" 200 4933 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838ce-0502-b1d6-1a4b-0303c5c7313b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838ce-0502-b1d6-1a4b-0303c5c7313b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=57 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_2_3 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_2_4 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_2_5 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_2_6 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_3_0 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_3_4 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_3_5 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_3_6 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_4_4 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_4_6 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_4_7 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_5_0 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_5_1 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_5_2 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_5_3 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_5_4 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_6_0 +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_6_1 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_6_2 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_6_6 +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_7_0 +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_7_1 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 57 has id: data_0_7_6 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=T49l4JcSRdY38V%2BWfpYY31EKPzU%3D HTTP/1.1" 200 35090 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=38Rr1UfVS8p6SJs7ptYkdur8Mj4%3D HTTP/1.1" 200 133478 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=MNmHL41PjiimCTPcqIrEVH0el5M%3D HTTP/1.1" 200 264297 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=6AVrbA1J0Uh6Lsd%2Biy%2BlLA08mPc%3D HTTP/1.1" 200 465916 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=HulaiRZXC8uYEdwfMA8AZxPsjv8%3D HTTP/1.1" 200 964549 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=4UOt0doYQGwKhIaARownSPaUHBQ%3D HTTP/1.1" 200 1747853 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=VsU6vOkbI4eN1RtwlM%2FO1lWIdR0%3D HTTP/1.1" 200 264690 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 993 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 993 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=VZsDeL92XXEJuVAVdWrXUVNWEQg%3D HTTP/1.1" 200 35019 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=M20nSb64XElzP7hxKBvUOw3jR%2F4%3D HTTP/1.1" 200 133377 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2529 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=QUQ%2FLUzT0iH%2BD%2BhWH3K7agWBPJ4%3D HTTP/1.1" 200 261719 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2546 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2535 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2545 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1911 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=e%2BVnBixf7E6fGibrYDGrW9thjzA%3D HTTP/1.1" 200 466986 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=VAJ%2Bo0HSqLZgU5cjYjhAFFjILFg%3D HTTP/1.1" 200 969217 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=yu5BEPo7mXkm4Qmqo7RY4XWV9gw%3D HTTP/1.1" 200 1734762 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 988 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=a606sfZmW9zl4ofxk8z8GoOJZD4%3D HTTP/1.1" 200 2186834 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 989 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=6T7%2B%2BInBDLfMl4dWn3ZylUp8yuk%3D HTTP/1.1" 200 33636 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 990 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=fOa%2BDiphMLCrbSt3acXyke%2Fi4bk%3D HTTP/1.1" 200 129595 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2513 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=S%2F1r347hNYniTuIKIJYMxqDx71c%3D HTTP/1.1" 200 256381 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2520 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=2HKlEjBVxGUdhLRp5jAsF5YEd7U%3D HTTP/1.1" 200 462463 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2516 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2535 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2531 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 527 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=%2ByWTRf0rbgkriwGpGnGB4xUwwuE%3D HTTP/1.1" 200 967630 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=3UetEAUF0ndppbjn4iGBTx7TeCw%3D HTTP/1.1" 200 1757664 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_0 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=ucK%2FcVykO13h8UPCJnR3aWurDQc%3D HTTP/1.1" 200 131960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=m239DPwKNdByxgDqY6OOxKD6Ds4%3D HTTP/1.1" 200 34661 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=VYLcrqZNJ2Nz%2FoXca8Ej2i252kg%3D HTTP/1.1" 200 133017 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2523 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=ad3%2B%2BgtmdLNAsc%2BHp3CvwjwqL34%3D HTTP/1.1" 200 262868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2541 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2536 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2522 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 975 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_4 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 249 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=yMm3%2Fjq0p1lMswuVTDy7pnpv0E4%3D HTTP/1.1" 200 464439 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=3X6eTcsbfaqr%2B%2BmgGf8sFTFsly0%3D HTTP/1.1" 200 962759 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 497 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=MLSRxielohVjcuwBfZ5jFLdaims%3D HTTP/1.1" 200 1740120 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=ZdFgclViOySl0YP7%2BOdUMgvS4S0%3D HTTP/1.1" 200 1208430 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 993 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 994 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=3TQss9jR%2FLdqLHtprV3D6VW5mcU%3D HTTP/1.1" 200 34475 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1987 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1971 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=Wd7n0BnJ3E%2Bi7uya0XawG9ZjCCc%3D HTTP/1.1" 200 131285 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2529 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=5cDtv3FGQ9BhgVnCvf7MvVLLlFo%3D HTTP/1.1" 200 259963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2531 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2532 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_3 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2517 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=wOGgylP6sbU4mrFuGb4kY5Nz6QY%3D HTTP/1.1" 200 464061 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2539 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2526 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1125 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 249 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=L3qghkVfYwvPOeAkK5r11BHseKs%3D HTTP/1.1" 200 963245 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=XIkRfwjgcWxFXnuIRvFBU2OQMFI%3D HTTP/1.1" 200 1763257 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=EY8BD7O6yhFlBQqV84X2%2FaFNpcY%3D HTTP/1.1" 200 3288578 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=TIYVq1%2BDwh25kN3yXdfrmmrOmUo%3D HTTP/1.1" 200 1193681 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_0 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1985 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=tdE5eK7VJD7GJjOHE9HFtS8Qvd8%3D HTTP/1.1" 200 34825 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1982 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 9 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=0Lz%2BuoK37ySHiQu7n%2BA8smcNoc8%3D HTTP/1.1" 200 132770 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2518 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2523 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2517 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 9 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 9, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2515 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=fVKF0mzPY%2B8mKDs217t11q8RTho%3D HTTP/1.1" 200 261281 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2542 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2538 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2533 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2544 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2542 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2528 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=ifN3V0OEWer3p5B0vKkcB67QQVw%3D HTTP/1.1" 200 463548 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 612 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_4 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=ruBj3jd3oYUKL2QMcKo4lFKaNQA%3D HTTP/1.1" 200 962977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=vkdJB4r1NBI2axtVLSRqywfnjSA%3D HTTP/1.1" 200 1755693 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_0 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=kltFYey8ZmY%2B8OaBC9DoCPdZI%2B8%3D HTTP/1.1" 200 150579 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=vUsiOsZnFXEtDuWSRF%2FjSBrLbog%3D HTTP/1.1" 200 35016 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=vqkyNx5zvZwtot4le0RZCUrZMvs%3D HTTP/1.1" 200 133248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 41 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 42 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 42 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2523 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=1NWOPlXuMNAL5fHYXa%2BPMXgBimY%3D HTTP/1.1" 200 264485 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2539 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2526 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 42 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 43 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 43 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1089 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_3 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 43 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 44 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 44 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 44 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 45 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 45 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 45 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 46 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 46 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=IDjQyIXYvl0f8%2BEONYR%2BUAW8THc%3D HTTP/1.1" 200 468013 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=NVqyUKzlnyl%2BerZ1tChsA5r%2Bf5Q%3D HTTP/1.1" 200 967057 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 46 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 47 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=ReTO3xKo9kW9f6cdRXjvP4pqsQI%3D HTTP/1.1" 200 1752141 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 47 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=cFizs441kKkZFRT3P2m1bwusSSs%3D HTTP/1.1" 200 2117103 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=LxzfYGe6JTAvKBfx2QSUJA91pSE%3D HTTP/1.1" 200 35021 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 47 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 48 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 48 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=pj8wfYAVbRVtip0dfVVgwddPQk8%3D HTTP/1.1" 200 133249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 48 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 49 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 49 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2524 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=N%2BV1vpEB7QyQCxygZT91fA64n5Y%3D HTTP/1.1" 200 263313 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2542 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2541 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2524 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 49 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 50 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_3 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 50 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2521 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=hD1zPULdq1OrkBwo7CHSjsmIHAM%3D HTTP/1.1" 200 465199 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2515 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2523 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2534 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 50 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 51 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 51 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 51 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 52 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 52 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 52 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 53 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 53 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=LQkiiCDwsJAmMKaOiqfF3PxErmI%3D HTTP/1.1" 200 966941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 53 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 54 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 54 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=3PAxjR9EiC0ztChGKwnayqvD%2B8Y%3D HTTP/1.1" 200 1756606 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668129991&Signature=FXt1SuZ4jgFzNtv3Dn5gFLAlC5I%3D HTTP/1.1" 200 238425 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 54 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 55 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 55 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1981 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 55 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 56 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 56 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2520 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2525 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2540 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2534 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2519 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 56 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 57 +DEBUG:snowflake.connector.result_set:user began consuming result batch 57 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1710 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 57 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: defdb95e-d5c4-4f43-a874-af5349c53f0f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=defdb95e-d5c4-4f43-a874-af5349c53f0f HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=dc3ba5ae-0eef-46f4-b7c7-faccd4b983e8 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 45dbab0c-9087-4edd-b096-52d6bfcfcda7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=dc3ba5ae-0eef-46f4-b7c7-faccd4b983e8&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=45dbab0c-9087-4edd-b096-52d6bfcfcda7 HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 7ef45a48-3451-4354-81f2-c1faeccddffa +DEBUG:snowflake.connector.cursor:running query [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 752119c9-54ac-487e-bd8e-cb495fd17c8d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7ef45a48-3451-4354-81f2-c1faeccddffa&request_guid=752119c9-54ac-487e-bd8e-cb495fd17c8d HTTP/1.1" 200 2298 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838d0-0502-af26-1a4b-0303c5c791d7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838d0-0502-af26-1a4b-0303c5c791d7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838d0-0502-af26-1a4b-0303c5c791d7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6b768d5a-1162-46f5-ac7a-62e583bc43b3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838d0-0502-af26-1a4b-0303c5c791d7?request_guid=6b768d5a-1162-46f5-ac7a-62e583bc43b3 HTTP/1.1" 200 1971 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838d0-0502-af26-1a4b-0303c5c791d7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 81932f3d-4c99-40f4-ac86-ec8141c0d0d2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838d0-0502-af26-1a4b-0303c5c791d7?request_guid=81932f3d-4c99-40f4-ac86-ec8141c0d0d2 HTTP/1.1" 200 1973 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838d0-0502-af26-1a4b-0303c5c791d7'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 55645395-216b-4e5d-b470-f3ff6a29dd6d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838d0-0502-af26-1a4b-0303c5c791d7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838d0-0502-af26-1a4b-0303c5c791d7'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 95164754-c11f-4c0a-8c03-090958aca2e7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=55645395-216b-4e5d-b470-f3ff6a29dd6d&request_guid=95164754-c11f-4c0a-8c03-090958aca2e7 HTTP/1.1" 200 2304 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838d0-0502-ae87-1a4b-0303c5c77db3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838d0-0502-ae87-1a4b-0303c5c77db3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668130122&Signature=H1zU8lBE6uLURs12uRVsN9wuviE%3D HTTP/1.1" 200 39942 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668130122&Signature=%2FVVttlQd1DSJPz%2BI79bAcfYhnFw%3D HTTP/1.1" 200 36830 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668130122&Signature=nvyv6aHyv%2F9ErqfUveZ4i46Atxs%3D HTTP/1.1" 200 137002 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/3 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 246 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 246 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 282 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 139.4s ago] ('minus_query', 1, 0) +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9db00cef-e887-4229-9108-a4ce8eef6a52 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=9db00cef-e887-4229-9108-a4ce8eef6a52 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.telemetry:Sending 1 logs to telemetry. Data is {'logs': [{'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_imported_packages', 'value': "{'json', 'html', 'gzip', 'tempfile', 'opcode', 'flask_wtf', 'pycparser', 'importlib', 'hashlib', 'oscrypto', 'asn1crypto', 'sre_compile', 'fnmatch', 'stat', 'sysconfig', 'posixpath', 'pyexpat', 'jwt', 'OpenSSL', 'ntpath', 'winreg', 'cmath', 'greenlet', 're', 'site', 'pkg_resources', 'pandas', 'zipimport', 'string', 'linecache', 'datetime', 'contextlib', 'codecs', 'code', 'http', 'email', 'copy', 'math', 'concurrent', 'dataclasses', 'fractions', 'numbers', 'zipfile', 'glob', 'operator', 'overrides', 'typing_extensions', 'selectors', 'urllib', 'pydevconsole', 'warnings', 'zlib', 'pydevd_tracing', 'bisect', 'alembic', 'dateutil', 'logging', 'gettext', 'tokenize', 'select', 'itertools', 'mako', 'Cryptodome', 'traceback', 'textwrap', 'cachelib', 'locale', 'cryptography', 'subprocess', 'encodings', 'pathlib', 'codeop', 'random', 'types', 'socket', 'bz2', 'enum', 'itsdangerous', 'sql', 'difflib', 'flask', 'idna', 'getpass', 'pkgutil', 'genericpath', 'base64', 'flask_sqlalchemy', 'time', 'os', 'pydevd_file_utils', 'token', 'numpy', 'colorama', 'collections', 'errno', 'config', 'imp', 'secrets', 'weakref', 'ipaddress', 'calendar', 'sqlalchemy', 'snowflake', 'certifi', 'urllib3', 'sre_parse', 'sqlite3', 'dis', 'jinja2', 'queue', 'typing', 'asyncio', 'common', 'sre_constants', 'quopri', 'atexit', 'functools', 'struct', 'filelock', 'shutil', 'function', 'six', 'gc', 'timeit', 'pydoc', 'reprlib', 'csv', 'click', 'signal', 'sys', 'keyword', 'xmlrpc', 'mimetypes', 'socketserver', 'ast', 'cython_runtime', 'contextvars', 'pickle', 'xml', 'flask_session', 'marshal', 'binascii', 'heapq', 'abc', 'platform', 'nturl2path', 'ctypes', 'psycopg2', 'nt', 'flask_migrate', 'msvcrt', 'inspect', 'werkzeug', 'unicodedata', 'decimal', 'uu', 'debugpy', 'ssl', 'hmac', 'mmap', 'markupsafe', 'charset_normalizer', 'lzma', 'builtins', 'fconfig', 'pydevd', 'pprint', 'pydev_ipython', 'copyreg', 'stringprep', 'pytz', 'configparser', 'shlex', 'wtforms', 'cffi', 'argparse', 'io', 'uuid', 'requests', 'pydevd_plugins', 'plistlib', 'webbrowser', 'threading'}"}, 'timestamp': '1668108384959'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838ce-0502-afee-1a4b-0303c5c7118f', 'value': -794}, 'timestamp': '1668108387007'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838ce-0502-b1d6-1a4b-0303c5c73063', 'value': -794}, 'timestamp': '1668108387357'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a838ce-0502-b1d6-1a4b-0303c5c73063', 'value': 4}, 'timestamp': '1668108387361'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838ce-0502-b1d6-1a4b-0303c5c73067', 'value': -792}, 'timestamp': '1668108387933'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838ce-0502-af26-1a4b-0303c5c6f58b', 'value': -795}, 'timestamp': '1668108388236'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a838ce-0502-af26-1a4b-0303c5c6f58b', 'value': 3}, 'timestamp': '1668108388239'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838ce-0502-ae87-1a4b-0303c5c7029b', 'value': -794}, 'timestamp': '1668108388359'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a838ce-0502-afee-1a4b-0303c5c711eb', 'value': -794}, 'timestamp': '1668108388664'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a838ce-0502-afee-1a4b-0303c5c711eb', 'value': 3}, 'timestamp': '1668108388667'}]}. +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 48f5939b-e8ce-4757-bb1d-254903a05302 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /telemetry/send?request_guid=48f5939b-e8ce-4757-bb1d-254903a05302 HTTP/1.1" 200 86 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.telemetry:Successfully uploading metrics to telemetry. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5973655f-cbd5-454e-a338-e6928328d823 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=5973655f-cbd5-454e-a338-e6928328d823 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.telemetry:Sending 1 logs to telemetry. Data is {'logs': [{'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_imported_packages', 'value': "{'json', 'html', 'gzip', 'tempfile', 'opcode', 'flask_wtf', 'pycparser', 'importlib', 'hashlib', 'oscrypto', 'asn1crypto', 'sre_compile', 'fnmatch', 'stat', 'sysconfig', 'posixpath', 'pyexpat', 'jwt', 'OpenSSL', 'ntpath', 'winreg', 'cmath', 'greenlet', 're', 'site', 'pkg_resources', 'pandas', 'zipimport', 'string', 'linecache', 'datetime', 'contextlib', 'codecs', 'code', 'http', 'email', 'copy', 'math', 'concurrent', 'dataclasses', 'fractions', 'numbers', 'zipfile', 'glob', 'operator', 'overrides', 'typing_extensions', 'selectors', 'urllib', 'pydevconsole', 'warnings', 'zlib', 'pydevd_tracing', 'bisect', 'alembic', 'dateutil', 'logging', 'gettext', 'tokenize', 'select', 'itertools', 'mako', 'Cryptodome', 'traceback', 'textwrap', 'cachelib', 'locale', 'cryptography', 'subprocess', 'encodings', 'pathlib', 'codeop', 'random', 'types', 'socket', 'bz2', 'enum', 'itsdangerous', 'sql', 'difflib', 'flask', 'idna', 'getpass', 'pkgutil', 'genericpath', 'base64', 'flask_sqlalchemy', 'time', 'os', 'pydevd_file_utils', 'token', 'numpy', 'colorama', 'collections', 'errno', 'config', 'imp', 'secrets', 'weakref', 'ipaddress', 'calendar', 'sqlalchemy', 'snowflake', 'certifi', 'urllib3', 'sre_parse', 'sqlite3', 'dis', 'jinja2', 'queue', 'typing', 'asyncio', 'common', 'sre_constants', 'quopri', 'atexit', 'functools', 'struct', 'filelock', 'shutil', 'function', 'six', 'gc', 'timeit', 'pydoc', 'reprlib', 'csv', 'click', 'signal', 'sys', 'keyword', 'xmlrpc', 'mimetypes', 'socketserver', 'ast', 'cython_runtime', 'contextvars', 'pickle', 'xml', 'flask_session', 'marshal', 'binascii', 'heapq', 'abc', 'platform', 'nturl2path', 'ctypes', 'psycopg2', 'nt', 'flask_migrate', 'msvcrt', 'inspect', 'werkzeug', 'unicodedata', 'decimal', 'uu', 'debugpy', 'ssl', 'hmac', 'mmap', 'markupsafe', 'charset_normalizer', 'lzma', 'builtins', 'fconfig', 'pydevd', 'pprint', 'pydev_ipython', 'copyreg', 'stringprep', 'pytz', 'configparser', 'shlex', 'wtforms', 'cffi', 'argparse', 'io', 'uuid', 'requests', 'pydevd_plugins', 'plistlib', 'webbrowser', 'threading'}"}, 'timestamp': '1668108386344'}]}. +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1d12dd03-ac49-491c-b5e4-3ddc3a7a7d14 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /telemetry/send?request_guid=1d12dd03-ac49-491c-b5e4-3ddc3a7a7d14 HTTP/1.1" 200 86 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.telemetry:Successfully uploading metrics to telemetry. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ffd72861-8ecf-40af-af6a-d0a44a9570fd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=ffd72861-8ecf-40af-af6a-d0a44a9570fd HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:28:51] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y206uQ.ZWVkwG7j9vm5LsFPJvo3S2_mVT8&submit=Submit HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:28:51] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:28:51] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:28:51] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:28:51] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:28:51] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:28:52] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:28:52] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:28:52] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:28:52] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:28:52] "GET /js/main.js HTTP/1.1" 404 - +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 14.79s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 14.79s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 14.79s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=66238134-ffcd-491e-969a-72812a3ea698 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3e1ad44e-5a18-49f6-a080-2a89a992f001 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2115917934320 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2115917934320 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2115918159616 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2115918159616 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2115918159616 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2115918159616 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2115917934320 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2115917934320 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:filelock:Attempting to acquire lock 2115919470624 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2115919470624 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2115920234864 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2115920234864 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2115920234864 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2115920234864 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2115919470624 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2115919470624 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:using OCSP response cache +DEBUG:snowflake.connector.ocsp_asn1crypto:Certificate is NOT attached in Basic OCSP Response. Using issuer's certificate +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the OCSP response is signed by the issuer. +DEBUG:filelock:Attempting to acquire lock 2115919529968 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2115919529968 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2115920277952 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2115920277952 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2115920277952 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2115920277952 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2115919529968 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2115919529968 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:using OCSP response cache +DEBUG:snowflake.connector.ocsp_asn1crypto:Certificate is attached in Basic OCSP Response +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer +DEBUG:snowflake.connector.ocsp_asn1crypto:Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the OCSP response is signed by the issuer. +DEBUG:filelock:Attempting to acquire lock 2115917385488 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2115917385488 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2115919542496 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2115919542496 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2115919542496 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2115919542496 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2115917385488 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2115917385488 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=66238134-ffcd-491e-969a-72812a3ea698&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=3e1ad44e-5a18-49f6-a080-2a89a992f001 HTTP/1.1" 200 1548 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=272b36c3-45a5-43f5-9732-08a098ce0317 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7bda5f69-312f-435e-a662-c8bba687cf2f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=272b36c3-45a5-43f5-9732-08a098ce0317&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=7bda5f69-312f-435e-a662-c8bba687cf2f HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00153s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 17dfae26-abff-4621-a833-5fd9c4eb2bc7 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 00baf7f3-cd61-4491-b234-b1f37f6aeafd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=17dfae26-abff-4621-a833-5fd9c4eb2bc7&request_guid=00baf7f3-cd61-4491-b234-b1f37f6aeafd HTTP/1.1" 200 2275 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838d5-0502-b0de-1a4b-0303c5c89db3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838d5-0502-b0de-1a4b-0303c5c89db3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838d5-0502-b0de-1a4b-0303c5c89db3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4c5d11f7-66ca-45b8-90dc-067700174cf3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838d5-0502-b0de-1a4b-0303c5c89db3?request_guid=4c5d11f7-66ca-45b8-90dc-067700174cf3 HTTP/1.1" 200 1857 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838d5-0502-b0de-1a4b-0303c5c89db3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 49a56a95-60af-429c-b2d8-a2be86e466c7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838d5-0502-b0de-1a4b-0303c5c89db3?request_guid=49a56a95-60af-429c-b2d8-a2be86e466c7 HTTP/1.1" 200 1856 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838d5-0502-b0de-1a4b-0303c5c89db3'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 6c1e9a01-aa98-4164-b85a-a8a0386f9603 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838d5-0502-b0de-1a4b-0303c5c89db3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838d5-0502-b0de-1a4b-0303c5c89db3'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6823d1a2-ef2a-46a6-bd08-3d97598de2dd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6c1e9a01-aa98-4164-b85a-a8a0386f9603&request_guid=6823d1a2-ef2a-46a6-bd08-3d97598de2dd HTTP/1.1" 200 2277 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838d6-0502-af26-1a4b-0303c5c88e97 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838d6-0502-af26-1a4b-0303c5c88e97 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: b0f343f3-6984-4249-a2e2-4d7c3b66428f +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9b1de825-5dcb-4f80-a784-866b97f3df23 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b0f343f3-6984-4249-a2e2-4d7c3b66428f&request_guid=9b1de825-5dcb-4f80-a784-866b97f3df23 HTTP/1.1" 200 1795 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838d6-0502-b1d6-1a4b-0303c5c8c9b7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838d6-0502-b1d6-1a4b-0303c5c8c9b7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838d6-0502-b1d6-1a4b-0303c5c8c9b7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 160ef75c-3646-4714-a1a5-1846556e24de +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838d6-0502-b1d6-1a4b-0303c5c8c9b7?request_guid=160ef75c-3646-4714-a1a5-1846556e24de HTTP/1.1" 200 2171 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838d6-0502-b1d6-1a4b-0303c5c8c9b7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7fbd66d6-e1b3-4160-be1d-04d7aec0dcc6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838d6-0502-b1d6-1a4b-0303c5c8c9b7?request_guid=7fbd66d6-e1b3-4160-be1d-04d7aec0dcc6 HTTP/1.1" 200 2170 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838d6-0502-b1d6-1a4b-0303c5c8c9b7'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 4678f6a5-1649-4da7-b15a-f50f8b8d0649 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838d6-0502-b1d6-1a4b-0303c5c8c9b7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838d6-0502-b1d6-1a4b-0303c5c8c9b7'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 162a38a7-3d60-4686-a177-5663e8a0eeb9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4678f6a5-1649-4da7-b15a-f50f8b8d0649&request_guid=162a38a7-3d60-4686-a177-5663e8a0eeb9 HTTP/1.1" 200 1795 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838d6-0502-b1d6-1a4b-0303c5c8c9f7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838d6-0502-b1d6-1a4b-0303c5c8c9f7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: aca4b3e1-5d0f-4635-9aef-0848ae24645c +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 237c2fb0-e378-46b3-ba0e-b13180d565b4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=aca4b3e1-5d0f-4635-9aef-0848ae24645c&request_guid=237c2fb0-e378-46b3-ba0e-b13180d565b4 HTTP/1.1" 200 2287 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838d6-0502-afee-1a4b-0303c5c8adb3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838d6-0502-afee-1a4b-0303c5c8adb3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838d6-0502-afee-1a4b-0303c5c8adb3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 056550b8-c9d7-4764-ab5c-5238ef3cebf8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838d6-0502-afee-1a4b-0303c5c8adb3?request_guid=056550b8-c9d7-4764-ab5c-5238ef3cebf8 HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838d6-0502-afee-1a4b-0303c5c8adb3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 98838dec-5b02-4ce1-b7c1-5de59266f890 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838d6-0502-afee-1a4b-0303c5c8adb3?request_guid=98838dec-5b02-4ce1-b7c1-5de59266f890 HTTP/1.1" 200 1682 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838d6-0502-afee-1a4b-0303c5c8adb3'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 33c2266d-6b9a-47b1-ab3e-b5f9f2e829de +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838d6-0502-afee-1a4b-0303c5c8adb3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838d6-0502-afee-1a4b-0303c5c8adb3'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4a8973f6-f788-4c60-8de3-01dfc493665b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=33c2266d-6b9a-47b1-ab3e-b5f9f2e829de&request_guid=4a8973f6-f788-4c60-8de3-01dfc493665b HTTP/1.1" 200 2282 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838d6-0502-b1d6-1a4b-0303c5c8ca6b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838d6-0502-b1d6-1a4b-0303c5c8ca6b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:46:02] "POST /submit HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:46:02] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:46:03] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:46:03] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:46:03] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:46:03] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:46:03] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:46:03] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:46:03] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:46:03] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:46:03] "GET /js/main.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 7.168s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 7.174s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 7.178s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=7bcb9ca9-4e62-417e-b787-ffcc2679fa9b +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3b32bbe4-2f71-4231-968f-ac6d898353d9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2389143487872 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2389143487872 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2389143581120 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2389143581120 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2389143581120 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2389143581120 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2389143487872 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2389143487872 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:filelock:Attempting to acquire lock 2389144744048 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2389144744048 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2389144901696 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2389144901696 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2389144744048 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2389144744048 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:using OCSP response cache +DEBUG:snowflake.connector.ocsp_asn1crypto:Certificate is attached in Basic OCSP Response +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer +DEBUG:snowflake.connector.ocsp_asn1crypto:Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the OCSP response is signed by the issuer. +DEBUG:filelock:Attempting to acquire lock 2389144983040 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2389144983040 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2389145615760 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2389145615760 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2389145615760 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2389145615760 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2389144983040 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2389144983040 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:using OCSP response cache +DEBUG:snowflake.connector.ocsp_asn1crypto:Certificate is attached in Basic OCSP Response +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer +DEBUG:snowflake.connector.ocsp_asn1crypto:Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the OCSP response is signed by the issuer. +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=7bcb9ca9-4e62-417e-b787-ffcc2679fa9b&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=3b32bbe4-2f71-4231-968f-ac6d898353d9 HTTP/1.1" 200 1548 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=d78a80c7-fad0-4afd-81c8-1a31c977729d +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bdc83a3d-3d5e-4c7e-a101-3eb2459f9a0b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=d78a80c7-fad0-4afd-81c8-1a31c977729d&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=bdc83a3d-3d5e-4c7e-a101-3eb2459f9a0b HTTP/1.1" 200 1548 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00197s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: e443ccd3-b44b-47a4-b974-9055c102a841 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6e86b002-30a6-43a0-90b4-03a1e1705e78 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e443ccd3-b44b-47a4-b974-9055c102a841&request_guid=6e86b002-30a6-43a0-90b4-03a1e1705e78 HTTP/1.1" 200 2276 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838e2-0502-af26-1a4b-0303c5cc1f7f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838e2-0502-af26-1a4b-0303c5cc1f7f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838e2-0502-af26-1a4b-0303c5cc1f7f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 62a6ab84-aca4-4b2f-8715-8428d9dbba99 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838e2-0502-af26-1a4b-0303c5cc1f7f?request_guid=62a6ab84-aca4-4b2f-8715-8428d9dbba99 HTTP/1.1" 200 1862 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838e2-0502-af26-1a4b-0303c5cc1f7f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2366d9a7-f2d2-423f-87c6-6dc0d6be427d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838e2-0502-af26-1a4b-0303c5cc1f7f?request_guid=2366d9a7-f2d2-423f-87c6-6dc0d6be427d HTTP/1.1" 200 1863 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838e2-0502-af26-1a4b-0303c5cc1f7f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 182dba4d-aedc-4f18-8885-faca4c042813 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838e2-0502-af26-1a4b-0303c5cc1f7f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838e2-0502-af26-1a4b-0303c5cc1f7f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 519801e5-b209-4931-a5b1-545598510936 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=182dba4d-aedc-4f18-8885-faca4c042813&request_guid=519801e5-b209-4931-a5b1-545598510936 HTTP/1.1" 200 2274 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838e2-0502-b1d6-1a4b-0303c5cc3b87 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838e2-0502-b1d6-1a4b-0303c5cc3b87 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 89b09ec4-7678-48ea-b493-43e80b567d50 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 64e7d83a-4567-4619-8339-cdfb05cf3a32 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=89b09ec4-7678-48ea-b493-43e80b567d50&request_guid=64e7d83a-4567-4619-8339-cdfb05cf3a32 HTTP/1.1" 200 1801 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838e2-0502-afee-1a4b-0303c5cc456f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838e2-0502-afee-1a4b-0303c5cc456f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838e2-0502-afee-1a4b-0303c5cc456f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d235aa18-a113-436f-a0b3-a94f43858e27 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838e2-0502-afee-1a4b-0303c5cc456f?request_guid=d235aa18-a113-436f-a0b3-a94f43858e27 HTTP/1.1" 200 2167 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838e2-0502-afee-1a4b-0303c5cc456f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 372d07ab-b227-4b11-90f0-c007f2cbc357 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838e2-0502-afee-1a4b-0303c5cc456f?request_guid=372d07ab-b227-4b11-90f0-c007f2cbc357 HTTP/1.1" 200 2168 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838e2-0502-afee-1a4b-0303c5cc456f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: e138c24f-6606-49f7-94f7-22e3aebb74d2 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838e2-0502-afee-1a4b-0303c5cc456f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838e2-0502-afee-1a4b-0303c5cc456f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 06c412b8-4028-4c9b-82fe-245c00b71f67 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e138c24f-6606-49f7-94f7-22e3aebb74d2&request_guid=06c412b8-4028-4c9b-82fe-245c00b71f67 HTTP/1.1" 200 1801 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838e2-0502-ae87-1a4b-0303c5cc617b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838e2-0502-ae87-1a4b-0303c5cc617b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 3a192625-386f-4327-8621-3a3029c48f99 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e4b9a644-0ab0-48e4-98da-70d776ccf6d2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3a192625-386f-4327-8621-3a3029c48f99&request_guid=e4b9a644-0ab0-48e4-98da-70d776ccf6d2 HTTP/1.1" 200 2281 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838e2-0502-b0de-1a4b-0303c5cc53f7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838e2-0502-b0de-1a4b-0303c5cc53f7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838e2-0502-b0de-1a4b-0303c5cc53f7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 722de4d5-b690-4259-911e-50922efc11e2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838e2-0502-b0de-1a4b-0303c5cc53f7?request_guid=722de4d5-b690-4259-911e-50922efc11e2 HTTP/1.1" 200 1684 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838e2-0502-b0de-1a4b-0303c5cc53f7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fe15369e-351a-4469-9bce-6b178f894714 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838e2-0502-b0de-1a4b-0303c5cc53f7?request_guid=fe15369e-351a-4469-9bce-6b178f894714 HTTP/1.1" 200 1684 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838e2-0502-b0de-1a4b-0303c5cc53f7'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: a08f0064-7e2d-4e2c-b00d-7c54322d70e4 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838e2-0502-b0de-1a4b-0303c5cc53f7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838e2-0502-b0de-1a4b-0303c5cc53f7'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1ff22609-f7dd-484d-972d-e5fe86d32b78 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a08f0064-7e2d-4e2c-b00d-7c54322d70e4&request_guid=1ff22609-f7dd-484d-972d-e5fe86d32b78 HTTP/1.1" 200 2281 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838e2-0502-b1d6-1a4b-0303c5cc3bdf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838e2-0502-b1d6-1a4b-0303c5cc3bdf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:49:45] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:49:45] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:49:45] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:50:15] "POST /submit HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:50:15] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:50:15] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:50:15] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:50:15] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:50:15] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:50:15] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:50:15] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:50:15] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:50:15] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 14:50:15] "GET /js/main.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 11.45s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 11.45s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 11.45s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=4f859425-b125-45fa-8bd3-4cff4d6fc749 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7f76f1cf-781c-4515-8336-564eac802f56 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1496650667088 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1496650667088 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1496650842320 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1496650842320 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1496650842320 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1496650842320 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1496650667088 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1496650667088 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:filelock:Attempting to acquire lock 1496652230768 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1496652230768 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1496652437568 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1496652437568 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1496652437568 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1496652437568 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1496652230768 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1496652230768 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:using OCSP response cache +DEBUG:snowflake.connector.ocsp_asn1crypto:Certificate is attached in Basic OCSP Response +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer +DEBUG:snowflake.connector.ocsp_asn1crypto:Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the OCSP response is signed by the issuer. +DEBUG:filelock:Attempting to acquire lock 1496652289344 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1496652289344 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1496653069520 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1496653069520 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1496653069520 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1496653069520 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1496652289344 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1496652289344 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:using OCSP response cache +DEBUG:snowflake.connector.ocsp_asn1crypto:Certificate is attached in Basic OCSP Response +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer +DEBUG:snowflake.connector.ocsp_asn1crypto:Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the OCSP response is signed by the issuer. +DEBUG:filelock:Attempting to acquire lock 1496650294432 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1496650294432 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1496652289872 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1496652289872 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1496652289872 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1496652289872 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1496650294432 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1496650294432 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=4f859425-b125-45fa-8bd3-4cff4d6fc749&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=7f76f1cf-781c-4515-8336-564eac802f56 HTTP/1.1" 200 1548 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=6092ae75-1163-40c3-8038-69c37d3bdfcf +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7a95ef77-fc45-42f9-95cc-4810509bab9a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=6092ae75-1163-40c3-8038-69c37d3bdfcf&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=7a95ef77-fc45-42f9-95cc-4810509bab9a HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00151s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 5acdbaf3-a4da-4ef6-8c69-b128686f890e +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8dcb6cc3-fa18-435d-83d8-f9a8b0b20454 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5acdbaf3-a4da-4ef6-8c69-b128686f890e&request_guid=8dcb6cc3-fa18-435d-83d8-f9a8b0b20454 HTTP/1.1" 200 2278 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838e6-0502-ae87-1a4b-0303c5cd5ecf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838e6-0502-ae87-1a4b-0303c5cd5ecf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838e6-0502-ae87-1a4b-0303c5cd5ecf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a1c31155-a39f-41bf-8465-a26ba6eb611b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838e6-0502-ae87-1a4b-0303c5cd5ecf?request_guid=a1c31155-a39f-41bf-8465-a26ba6eb611b HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838e6-0502-ae87-1a4b-0303c5cd5ecf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e5b076b5-ed2e-408b-8661-0c8b7f0bfd9a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838e6-0502-ae87-1a4b-0303c5cd5ecf?request_guid=e5b076b5-ed2e-408b-8661-0c8b7f0bfd9a HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838e6-0502-ae87-1a4b-0303c5cd5ecf'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 04d4956f-9e03-4753-9ebb-da7cb6eb06f2 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838e6-0502-ae87-1a4b-0303c5cd5ecf'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838e6-0502-ae87-1a4b-0303c5cd5ecf'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5816fc38-af53-4d4d-9dda-5c39c31067a6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=04d4956f-9e03-4753-9ebb-da7cb6eb06f2&request_guid=5816fc38-af53-4d4d-9dda-5c39c31067a6 HTTP/1.1" 200 2279 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838e6-0502-ae87-1a4b-0303c5cd5f4f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838e6-0502-ae87-1a4b-0303c5cd5f4f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: c69691d4-753c-48bd-907d-e30cb7272b44 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: da2f77f5-cdb0-495e-9251-5202e38bb908 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c69691d4-753c-48bd-907d-e30cb7272b44&request_guid=da2f77f5-cdb0-495e-9251-5202e38bb908 HTTP/1.1" 200 1799 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838e6-0502-b0de-1a4b-0303c5cd94e7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838e6-0502-b0de-1a4b-0303c5cd94e7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838e6-0502-b0de-1a4b-0303c5cd94e7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 64165ef7-3a5a-4f0a-893b-63d580200631 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838e6-0502-b0de-1a4b-0303c5cd94e7?request_guid=64165ef7-3a5a-4f0a-893b-63d580200631 HTTP/1.1" 200 2172 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838e6-0502-b0de-1a4b-0303c5cd94e7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3acf6924-afb1-466c-a855-4a4a9b2648f1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838e6-0502-b0de-1a4b-0303c5cd94e7?request_guid=3acf6924-afb1-466c-a855-4a4a9b2648f1 HTTP/1.1" 200 2172 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838e6-0502-b0de-1a4b-0303c5cd94e7'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 89e07d07-efe8-4aa6-8401-0dc9cf4ba833 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838e6-0502-b0de-1a4b-0303c5cd94e7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838e6-0502-b0de-1a4b-0303c5cd94e7'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7b47bfa3-1685-460b-baba-62e2514a9d05 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=89e07d07-efe8-4aa6-8401-0dc9cf4ba833&request_guid=7b47bfa3-1685-460b-baba-62e2514a9d05 HTTP/1.1" 200 1803 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838e6-0502-ae87-1a4b-0303c5cd5f8b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838e6-0502-ae87-1a4b-0303c5cd5f8b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 30f8d24f-fd27-44da-af14-32fb6b423e12 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a18ec515-346c-4fbb-b456-0a6a7e8f2653 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=30f8d24f-fd27-44da-af14-32fb6b423e12&request_guid=a18ec515-346c-4fbb-b456-0a6a7e8f2653 HTTP/1.1" 200 2288 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838e6-0502-afee-1a4b-0303c5cd8733 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838e6-0502-afee-1a4b-0303c5cd8733 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838e6-0502-afee-1a4b-0303c5cd8733' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 73bf8fc5-5b0e-4200-94e6-f1b5cd524b86 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838e6-0502-afee-1a4b-0303c5cd8733?request_guid=73bf8fc5-5b0e-4200-94e6-f1b5cd524b86 HTTP/1.1" 200 1675 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838e6-0502-afee-1a4b-0303c5cd8733' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 34cd630b-9290-4480-a6a2-446cd675afb6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838e6-0502-afee-1a4b-0303c5cd8733?request_guid=34cd630b-9290-4480-a6a2-446cd675afb6 HTTP/1.1" 200 1675 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838e6-0502-afee-1a4b-0303c5cd8733'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 4925f4f1-0556-4424-a640-a4a7a735cd5c +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838e6-0502-afee-1a4b-0303c5cd8733'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838e6-0502-afee-1a4b-0303c5cd8733'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2019d59e-f4d6-4f46-ba03-9c6a61e4b373 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4925f4f1-0556-4424-a640-a4a7a735cd5c&request_guid=2019d59e-f4d6-4f46-ba03-9c6a61e4b373 HTTP/1.1" 200 2284 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838e6-0502-b1d6-1a4b-0303c5cd7be3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838e6-0502-b1d6-1a4b-0303c5cd7be3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:01:36] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:01:36] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:01:36] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:01:36] "GET /js/main.js HTTP/1.1" 404 - +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:01:54] "POST /submit HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:01:54] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:01:54] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:01:55] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:01:55] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:01:55] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:01:55] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:01:55] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:01:55] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:01:55] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:01:55] "GET /js/main.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 6.092s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 6.097s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 6.101s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=8a77b820-0c10-473f-bf9f-24cc1aa5cc72 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1ee4d7d7-cd07-4f91-9c84-699c9ba2f97e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2114839435280 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2114839435280 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2114839741968 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2114839741968 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2114839741968 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2114839741968 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2114839435280 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2114839435280 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=8a77b820-0c10-473f-bf9f-24cc1aa5cc72&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=1ee4d7d7-cd07-4f91-9c84-699c9ba2f97e HTTP/1.1" 200 1547 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=aaff1158-1350-416f-9214-cd734d346d9e +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bb3a0dfb-813d-4962-bae1-ffb452ddffb6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=aaff1158-1350-416f-9214-cd734d346d9e&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=bb3a0dfb-813d-4962-bae1-ffb452ddffb6 HTTP/1.1" 200 1544 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00148s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 678b4f16-11f8-413f-9e58-d750d1a132b0 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: be2be74b-9cd4-4e1b-b0ae-17d4d7cc5e60 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=678b4f16-11f8-413f-9e58-d750d1a132b0&request_guid=be2be74b-9cd4-4e1b-b0ae-17d4d7cc5e60 HTTP/1.1" 200 2273 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f2-0502-b1d6-1a4b-0303c5d0c64b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f2-0502-b1d6-1a4b-0303c5d0c64b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f2-0502-b1d6-1a4b-0303c5d0c64b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 16b4eeac-f3c3-4308-8cdf-963c749b43ae +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f2-0502-b1d6-1a4b-0303c5d0c64b?request_guid=16b4eeac-f3c3-4308-8cdf-963c749b43ae HTTP/1.1" 200 1849 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f2-0502-b1d6-1a4b-0303c5d0c64b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fee3553b-d5bb-4446-9919-16703c868ca9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f2-0502-b1d6-1a4b-0303c5d0c64b?request_guid=fee3553b-d5bb-4446-9919-16703c868ca9 HTTP/1.1" 200 1849 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838f2-0502-b1d6-1a4b-0303c5d0c64b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 3242680b-c211-476a-b8d5-3eebf1a74d8d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838f2-0502-b1d6-1a4b-0303c5d0c64b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838f2-0502-b1d6-1a4b-0303c5d0c64b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2a6778d9-f603-4f86-8a9d-e2b5b31308c1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3242680b-c211-476a-b8d5-3eebf1a74d8d&request_guid=2a6778d9-f603-4f86-8a9d-e2b5b31308c1 HTTP/1.1" 200 2277 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f2-0502-afee-1a4b-0303c5d0ae33 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f2-0502-afee-1a4b-0303c5d0ae33 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: bb1627ff-a7e9-4422-91ed-9039bcb64128 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 14f99b85-d879-48f3-a69e-a019c162c7da +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=bb1627ff-a7e9-4422-91ed-9039bcb64128&request_guid=14f99b85-d879-48f3-a69e-a019c162c7da HTTP/1.1" 200 1800 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f2-0502-ae87-1a4b-0303c5d0e57f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f2-0502-ae87-1a4b-0303c5d0e57f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f2-0502-ae87-1a4b-0303c5d0e57f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b637a100-c323-48f2-9dd8-f090a51fea8e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f2-0502-ae87-1a4b-0303c5d0e57f?request_guid=b637a100-c323-48f2-9dd8-f090a51fea8e HTTP/1.1" 200 2182 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f2-0502-ae87-1a4b-0303c5d0e57f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fa1038bb-c6fe-4800-8f1b-50d2a649630f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f2-0502-ae87-1a4b-0303c5d0e57f?request_guid=fa1038bb-c6fe-4800-8f1b-50d2a649630f HTTP/1.1" 200 2182 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838f2-0502-ae87-1a4b-0303c5d0e57f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 009272c0-22bb-4ff4-bf7f-ba9771afdcc2 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838f2-0502-ae87-1a4b-0303c5d0e57f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838f2-0502-ae87-1a4b-0303c5d0e57f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 16ce90f4-eb29-46da-832c-623879a92fbf +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=009272c0-22bb-4ff4-bf7f-ba9771afdcc2&request_guid=16ce90f4-eb29-46da-832c-623879a92fbf HTTP/1.1" 200 1799 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f2-0502-af26-1a4b-0303c5d0d7db +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f2-0502-af26-1a4b-0303c5d0d7db +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: b64f5c0e-0816-4c35-97e5-4661511cc8d2 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 295a2676-f1e3-42a3-afb3-6067c664eb3c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b64f5c0e-0816-4c35-97e5-4661511cc8d2&request_guid=295a2676-f1e3-42a3-afb3-6067c664eb3c HTTP/1.1" 200 2285 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f2-0502-af26-1a4b-0303c5d0d7ef +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f2-0502-af26-1a4b-0303c5d0d7ef +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f2-0502-af26-1a4b-0303c5d0d7ef' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 33f3b6c7-72e5-4eeb-b762-831f647d4c47 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f2-0502-af26-1a4b-0303c5d0d7ef?request_guid=33f3b6c7-72e5-4eeb-b762-831f647d4c47 HTTP/1.1" 200 1677 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f2-0502-af26-1a4b-0303c5d0d7ef' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 62ebdf4c-b1e6-458c-9fe7-bd1f99e1ef93 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f2-0502-af26-1a4b-0303c5d0d7ef?request_guid=62ebdf4c-b1e6-458c-9fe7-bd1f99e1ef93 HTTP/1.1" 200 1677 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838f2-0502-af26-1a4b-0303c5d0d7ef'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 1ee84f6d-fe64-4ae6-8cc1-daba000929ed +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838f2-0502-af26-1a4b-0303c5d0d7ef'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838f2-0502-af26-1a4b-0303c5d0d7ef'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 525e0a0b-6ad5-4b2c-9b6f-7343b55bef00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1ee84f6d-fe64-4ae6-8cc1-daba000929ed&request_guid=525e0a0b-6ad5-4b2c-9b6f-7343b55bef00 HTTP/1.1" 200 2283 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f2-0502-b0de-1a4b-0303c5d0bd4b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f2-0502-b0de-1a4b-0303c5d0bd4b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3381s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.345s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3498s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=90a78c45-0a24-4dba-934b-d56f8f582171 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7f9359b5-c8cf-4e4f-85a6-ef381986bd80 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1672665819472 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1672665819472 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1672666142544 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1672666142544 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1672666142544 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1672666142544 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1672665819472 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1672665819472 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=90a78c45-0a24-4dba-934b-d56f8f582171&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=7f9359b5-c8cf-4e4f-85a6-ef381986bd80 HTTP/1.1" 200 1546 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=0cb62bfb-cc74-4bfa-9ec8-c9c4b529ef24 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: aaf7fe22-c291-430b-b056-3de65f705b71 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=0cb62bfb-cc74-4bfa-9ec8-c9c4b529ef24&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=aaf7fe22-c291-430b-b056-3de65f705b71 HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00159s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: e2afb252-de0d-4543-be87-55e69bf7d570 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a9e328e5-60db-41dd-a6ba-50aca3ffdd2a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e2afb252-de0d-4543-be87-55e69bf7d570&request_guid=a9e328e5-60db-41dd-a6ba-50aca3ffdd2a HTTP/1.1" 200 2273 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f3-0502-b1d6-1a4b-0303c5d12e23 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f3-0502-b1d6-1a4b-0303c5d12e23 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f3-0502-b1d6-1a4b-0303c5d12e23' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 13c8184c-49d1-48a1-a2a4-f84f5d83d255 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f3-0502-b1d6-1a4b-0303c5d12e23?request_guid=13c8184c-49d1-48a1-a2a4-f84f5d83d255 HTTP/1.1" 200 1853 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f3-0502-b1d6-1a4b-0303c5d12e23' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 87e0180e-a83e-46b3-b3c1-800344b9b96e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f3-0502-b1d6-1a4b-0303c5d12e23?request_guid=87e0180e-a83e-46b3-b3c1-800344b9b96e HTTP/1.1" 200 1853 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838f3-0502-b1d6-1a4b-0303c5d12e23'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: f058a12b-bd3a-4181-96bf-cdfa6892440a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838f3-0502-b1d6-1a4b-0303c5d12e23'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838f3-0502-b1d6-1a4b-0303c5d12e23'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 71e0f3b7-59cb-482c-9cc5-ade80bc739f8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f058a12b-bd3a-4181-96bf-cdfa6892440a&request_guid=71e0f3b7-59cb-482c-9cc5-ade80bc739f8 HTTP/1.1" 200 2275 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f3-0502-af26-1a4b-0303c5d17073 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f3-0502-af26-1a4b-0303c5d17073 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 81511696-2918-49c5-bedd-1bab0e1ebaf9 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ed6e7a67-2072-4c3f-9d8b-cde2d6e79330 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=81511696-2918-49c5-bedd-1bab0e1ebaf9&request_guid=ed6e7a67-2072-4c3f-9d8b-cde2d6e79330 HTTP/1.1" 200 1800 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f3-0502-ae87-1a4b-0303c5d16173 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f3-0502-ae87-1a4b-0303c5d16173 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f3-0502-ae87-1a4b-0303c5d16173' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fb7e1cf9-7b78-4bd6-8500-a34211f5245c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f3-0502-ae87-1a4b-0303c5d16173?request_guid=fb7e1cf9-7b78-4bd6-8500-a34211f5245c HTTP/1.1" 200 2170 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f3-0502-ae87-1a4b-0303c5d16173' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a4479743-cae6-4768-8817-acacbb580167 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f3-0502-ae87-1a4b-0303c5d16173?request_guid=a4479743-cae6-4768-8817-acacbb580167 HTTP/1.1" 200 2170 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838f3-0502-ae87-1a4b-0303c5d16173'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: d938c5bf-44e1-49f3-838c-a911913acba6 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838f3-0502-ae87-1a4b-0303c5d16173'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838f3-0502-ae87-1a4b-0303c5d16173'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 15ff926c-9c9a-4252-b05f-64c3c5f7bb69 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d938c5bf-44e1-49f3-838c-a911913acba6&request_guid=15ff926c-9c9a-4252-b05f-64c3c5f7bb69 HTTP/1.1" 503 15104 +DEBUG:snowflake.connector.network:000503: 503: HTTP 503: Service Unavailable. Retrying... +DEBUG:snowflake.connector.network:retrying: errorclass=, error=000503: 503: HTTP 503: Service Unavailable, counter=1, sleeping=3(s) +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 2 +DEBUG:snowflake.connector.network:Request guid: 39023cae-5ff4-4909-9a85-e532d8945d88 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d938c5bf-44e1-49f3-838c-a911913acba6&clientStartTime=1668110613599&retryCount=1&request_guid=39023cae-5ff4-4909-9a85-e532d8945d88 HTTP/1.1" 200 1797 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f3-0502-b0de-1a4b-0303c5d15597 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f3-0502-b0de-1a4b-0303c5d15597 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 46511ea7-92be-4edb-a405-fade2f6edacd +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 62126698-bcf1-4c2d-91df-db1175d9db31 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=46511ea7-92be-4edb-a405-fade2f6edacd&request_guid=62126698-bcf1-4c2d-91df-db1175d9db31 HTTP/1.1" 200 2285 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f3-0502-af26-1a4b-0303c5d1715b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f3-0502-af26-1a4b-0303c5d1715b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f3-0502-af26-1a4b-0303c5d1715b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e40b2a46-6f36-4dae-a1e3-660bbe115d5e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f3-0502-af26-1a4b-0303c5d1715b?request_guid=e40b2a46-6f36-4dae-a1e3-660bbe115d5e HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f3-0502-af26-1a4b-0303c5d1715b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ba09354a-c9da-468e-b5f2-561c6acaabb4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f3-0502-af26-1a4b-0303c5d1715b?request_guid=ba09354a-c9da-468e-b5f2-561c6acaabb4 HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838f3-0502-af26-1a4b-0303c5d1715b'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 96895f9c-9772-4572-9cf3-5433443c900f +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838f3-0502-af26-1a4b-0303c5d1715b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838f3-0502-af26-1a4b-0303c5d1715b'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ec5042d6-be1d-4ff1-9437-728b027ef974 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=96895f9c-9772-4572-9cf3-5433443c900f&request_guid=ec5042d6-be1d-4ff1-9437-728b027ef974 HTTP/1.1" 200 2283 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f3-0502-b1d6-1a4b-0303c5d12f03 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f3-0502-b1d6-1a4b-0303c5d12f03 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3475s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3519s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3584s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=6a8f0477-d7ae-4267-b920-081091a9b5f2 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 03bcc031-3a27-41b7-886a-53690780d76a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1663148288144 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1663148288144 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1663148594832 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1663148594832 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1663148594832 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1663148594832 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1663148288144 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1663148288144 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=6a8f0477-d7ae-4267-b920-081091a9b5f2&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=03bcc031-3a27-41b7-886a-53690780d76a HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=9871a0ae-f367-47cb-aca3-5c3102bfcf91 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 45038621-1692-460d-8b0c-6898959ab828 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=9871a0ae-f367-47cb-aca3-5c3102bfcf91&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=45038621-1692-460d-8b0c-6898959ab828 HTTP/1.1" 200 1549 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00157s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: a21438ce-c65d-433d-aaf2-97013af1d39c +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e7fa31f6-517d-40eb-9e16-4c7eb9fbf221 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a21438ce-c65d-433d-aaf2-97013af1d39c&request_guid=e7fa31f6-517d-40eb-9e16-4c7eb9fbf221 HTTP/1.1" 200 2276 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f6-0502-af26-1a4b-0303c5d2708b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f6-0502-af26-1a4b-0303c5d2708b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f6-0502-af26-1a4b-0303c5d2708b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 70da9750-8af8-494b-9d60-696405a8ebfc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f6-0502-af26-1a4b-0303c5d2708b?request_guid=70da9750-8af8-494b-9d60-696405a8ebfc HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f6-0502-af26-1a4b-0303c5d2708b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b614566f-a02d-48d3-b5cb-dd56f83fe2e2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f6-0502-af26-1a4b-0303c5d2708b?request_guid=b614566f-a02d-48d3-b5cb-dd56f83fe2e2 HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838f6-0502-af26-1a4b-0303c5d2708b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: e36cc057-c845-48a6-a3cf-03cff698c77a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838f6-0502-af26-1a4b-0303c5d2708b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838f6-0502-af26-1a4b-0303c5d2708b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5db1eff3-c2f5-4b4b-bf0b-3b3a01c7739e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e36cc057-c845-48a6-a3cf-03cff698c77a&request_guid=5db1eff3-c2f5-4b4b-bf0b-3b3a01c7739e HTTP/1.1" 200 2279 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f6-0502-ae87-1a4b-0303c5d25483 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f6-0502-ae87-1a4b-0303c5d25483 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 54a360ef-fd91-4c08-98c6-49b3843d10f3 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 56f5f1bb-21a0-4b28-9214-e2e35dff2465 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=54a360ef-fd91-4c08-98c6-49b3843d10f3&request_guid=56f5f1bb-21a0-4b28-9214-e2e35dff2465 HTTP/1.1" 200 1802 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f6-0502-afee-1a4b-0303c5d23e9f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f6-0502-afee-1a4b-0303c5d23e9f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f6-0502-afee-1a4b-0303c5d23e9f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: db9d457c-977a-4388-9ac7-6dcfcc6231ee +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f6-0502-afee-1a4b-0303c5d23e9f?request_guid=db9d457c-977a-4388-9ac7-6dcfcc6231ee HTTP/1.1" 200 2170 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f6-0502-afee-1a4b-0303c5d23e9f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 814e3bdb-5233-4233-b728-949fb894f365 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f6-0502-afee-1a4b-0303c5d23e9f?request_guid=814e3bdb-5233-4233-b728-949fb894f365 HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838f6-0502-afee-1a4b-0303c5d23e9f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: fbd3e8e1-a59a-4c9e-b507-3629cd17a42e +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838f6-0502-afee-1a4b-0303c5d23e9f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838f6-0502-afee-1a4b-0303c5d23e9f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c71d9ffd-8390-42d8-9bdb-2c98e6df9696 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=fbd3e8e1-a59a-4c9e-b507-3629cd17a42e&request_guid=c71d9ffd-8390-42d8-9bdb-2c98e6df9696 HTTP/1.1" 200 1799 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f6-0502-af26-1a4b-0303c5d2718b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f6-0502-af26-1a4b-0303c5d2718b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 4b776b8a-608d-4db7-b7ab-09b8c81e2f53 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3b9e3f8e-1515-41b8-b517-c91d3c07b860 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4b776b8a-608d-4db7-b7ab-09b8c81e2f53&request_guid=3b9e3f8e-1515-41b8-b517-c91d3c07b860 HTTP/1.1" 200 2281 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f6-0502-b1d6-1a4b-0303c5d26227 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f6-0502-b1d6-1a4b-0303c5d26227 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f6-0502-b1d6-1a4b-0303c5d26227' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b7ac0037-b04d-444e-a3fc-67d2d66fcec7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f6-0502-b1d6-1a4b-0303c5d26227?request_guid=b7ac0037-b04d-444e-a3fc-67d2d66fcec7 HTTP/1.1" 200 1680 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f6-0502-b1d6-1a4b-0303c5d26227' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 34c37c25-1b86-49d4-887a-531210259c0a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f6-0502-b1d6-1a4b-0303c5d26227?request_guid=34c37c25-1b86-49d4-887a-531210259c0a HTTP/1.1" 200 1679 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838f6-0502-b1d6-1a4b-0303c5d26227'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 7468961c-d689-409c-83c2-cc65cd87daac +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838f6-0502-b1d6-1a4b-0303c5d26227'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838f6-0502-b1d6-1a4b-0303c5d26227'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 857e2ccf-2fac-4106-8fbe-18d395e9a3d6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7468961c-d689-409c-83c2-cc65cd87daac&request_guid=857e2ccf-2fac-4106-8fbe-18d395e9a3d6 HTTP/1.1" 200 2281 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f6-0502-b1d6-1a4b-0303c5d2623f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f6-0502-b1d6-1a4b-0303c5d2623f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3092s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3134s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3198s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=cda21322-14a5-4cf3-9ce1-096601314d76 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e7cf5fec-86a5-486d-adbf-04bb99d1e434 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2479798216848 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2479798216848 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2479798556304 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2479798556304 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2479798556304 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2479798556304 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2479798216848 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2479798216848 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=cda21322-14a5-4cf3-9ce1-096601314d76&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=e7cf5fec-86a5-486d-adbf-04bb99d1e434 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=62a5b568-cb10-4994-8031-6c03d9627f27 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 08c707fd-5cee-4325-9900-c7d8cea23084 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=62a5b568-cb10-4994-8031-6c03d9627f27&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=08c707fd-5cee-4325-9900-c7d8cea23084 HTTP/1.1" 200 1549 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00179s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 3e3c6c26-b34e-453f-b733-c15b2395baab +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5a9416c6-8cbf-4121-a6da-923e525caee6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3e3c6c26-b34e-453f-b733-c15b2395baab&request_guid=5a9416c6-8cbf-4121-a6da-923e525caee6 HTTP/1.1" 200 2272 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f8-0502-b1d6-1a4b-0303c5d3033f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f8-0502-b1d6-1a4b-0303c5d3033f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f8-0502-b1d6-1a4b-0303c5d3033f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f6901b22-8171-4271-8975-e8b243628859 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f8-0502-b1d6-1a4b-0303c5d3033f?request_guid=f6901b22-8171-4271-8975-e8b243628859 HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f8-0502-b1d6-1a4b-0303c5d3033f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 369876ca-7d77-4cf2-ac9b-faca0bb1e928 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f8-0502-b1d6-1a4b-0303c5d3033f?request_guid=369876ca-7d77-4cf2-ac9b-faca0bb1e928 HTTP/1.1" 200 1849 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838f8-0502-b1d6-1a4b-0303c5d3033f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: eba173c0-29cd-443e-b24f-fb4a6078a8f6 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838f8-0502-b1d6-1a4b-0303c5d3033f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838f8-0502-b1d6-1a4b-0303c5d3033f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 73beea63-575d-4b10-a9a1-1a9a264cc159 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=eba173c0-29cd-443e-b24f-fb4a6078a8f6&request_guid=73beea63-575d-4b10-a9a1-1a9a264cc159 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f8-0502-afee-1a4b-0303c5d2de33 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f8-0502-afee-1a4b-0303c5d2de33 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 24d395a5-f0dc-4ea6-9737-d972e27ddbd2 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8ad0cef9-08d6-4f00-b9bc-c7ea1104f286 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=24d395a5-f0dc-4ea6-9737-d972e27ddbd2&request_guid=8ad0cef9-08d6-4f00-b9bc-c7ea1104f286 HTTP/1.1" 200 1799 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f8-0502-b0de-1a4b-0303c5d2e98f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f8-0502-b0de-1a4b-0303c5d2e98f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f8-0502-b0de-1a4b-0303c5d2e98f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6e032a62-9653-41b8-9bd9-eb404bc375ab +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f8-0502-b0de-1a4b-0303c5d2e98f?request_guid=6e032a62-9653-41b8-9bd9-eb404bc375ab HTTP/1.1" 200 2172 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f8-0502-b0de-1a4b-0303c5d2e98f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 67e020d4-04e9-4e83-b81c-c3bbfa474740 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f8-0502-b0de-1a4b-0303c5d2e98f?request_guid=67e020d4-04e9-4e83-b81c-c3bbfa474740 HTTP/1.1" 200 2172 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838f8-0502-b0de-1a4b-0303c5d2e98f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: fb17acbe-1604-4a5c-8665-1129ae5aab2b +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838f8-0502-b0de-1a4b-0303c5d2e98f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838f8-0502-b0de-1a4b-0303c5d2e98f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c6f61a4c-000b-4e59-aa48-17cd4dbace0e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=fb17acbe-1604-4a5c-8665-1129ae5aab2b&request_guid=c6f61a4c-000b-4e59-aa48-17cd4dbace0e HTTP/1.1" 200 1796 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f8-0502-b1d6-1a4b-0303c5d303a3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f8-0502-b1d6-1a4b-0303c5d303a3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: f58538c2-03d5-4ea3-a952-7fb094c6961f +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9dfdeee5-8414-4f2e-b45d-70a69b8fbce7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f58538c2-03d5-4ea3-a952-7fb094c6961f&request_guid=9dfdeee5-8414-4f2e-b45d-70a69b8fbce7 HTTP/1.1" 200 2281 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f8-0502-b1d6-1a4b-0303c5d303ab +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f8-0502-b1d6-1a4b-0303c5d303ab +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f8-0502-b1d6-1a4b-0303c5d303ab' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c3e92a11-2322-4ad6-8440-17908b9f65a4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f8-0502-b1d6-1a4b-0303c5d303ab?request_guid=c3e92a11-2322-4ad6-8440-17908b9f65a4 HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838f8-0502-b1d6-1a4b-0303c5d303ab' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 57702be6-d938-4682-9249-d2c68440f8ab +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838f8-0502-b1d6-1a4b-0303c5d303ab?request_guid=57702be6-d938-4682-9249-d2c68440f8ab HTTP/1.1" 200 1679 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838f8-0502-b1d6-1a4b-0303c5d303ab'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 840bb970-9c0f-4d64-aa54-82827096510a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838f8-0502-b1d6-1a4b-0303c5d303ab'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838f8-0502-b1d6-1a4b-0303c5d303ab'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 15b7478d-8060-4fb1-a86c-44ec92371b8d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=840bb970-9c0f-4d64-aa54-82827096510a&request_guid=15b7478d-8060-4fb1-a86c-44ec92371b8d HTTP/1.1" 200 2286 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838f8-0502-ae87-1a4b-0303c5d2f603 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838f8-0502-ae87-1a4b-0303c5d2f603 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3868s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3914s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3949s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=0efd6a22-1084-414e-83ec-9972949c0dc1 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8e740574-9ff1-4b0a-9784-2dccf6a2cc7f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2559500281808 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2559500281808 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2559500572112 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2559500572112 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2559500572112 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2559500572112 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2559500281808 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2559500281808 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=0efd6a22-1084-414e-83ec-9972949c0dc1&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=8e740574-9ff1-4b0a-9784-2dccf6a2cc7f HTTP/1.1" 200 1548 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=beeff59c-538a-4b23-9a04-1efb74fb60d7 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c5059546-11e3-4082-bff4-b0f581377bae +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=beeff59c-538a-4b23-9a04-1efb74fb60d7&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=c5059546-11e3-4082-bff4-b0f581377bae HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00146s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: f737b741-3186-4a4e-a8a2-ffe3e57a8849 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 46708a29-a6dd-46e7-ad1c-4b1af34d9db4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f737b741-3186-4a4e-a8a2-ffe3e57a8849&request_guid=46708a29-a6dd-46e7-ad1c-4b1af34d9db4 HTTP/1.1" 200 2278 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838fb-0502-ae87-1a4b-0303c5d3a553 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838fb-0502-ae87-1a4b-0303c5d3a553 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838fb-0502-ae87-1a4b-0303c5d3a553' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4fc6f184-2b34-4eb1-be6d-0173ca7c9126 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838fb-0502-ae87-1a4b-0303c5d3a553?request_guid=4fc6f184-2b34-4eb1-be6d-0173ca7c9126 HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838fb-0502-ae87-1a4b-0303c5d3a553' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 66c31b6f-de13-4d95-8c89-de0ee7c72016 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838fb-0502-ae87-1a4b-0303c5d3a553?request_guid=66c31b6f-de13-4d95-8c89-de0ee7c72016 HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838fb-0502-ae87-1a4b-0303c5d3a553'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: a0ebc7ff-7ced-4cd4-8fb3-26f239f66b53 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838fb-0502-ae87-1a4b-0303c5d3a553'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838fb-0502-ae87-1a4b-0303c5d3a553'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fefb30c0-e968-4f4c-9e5e-8aa05133752a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a0ebc7ff-7ced-4cd4-8fb3-26f239f66b53&request_guid=fefb30c0-e968-4f4c-9e5e-8aa05133752a HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838fb-0502-ae87-1a4b-0303c5d3a583 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838fb-0502-ae87-1a4b-0303c5d3a583 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: fbc03527-eba3-480e-b96b-3b2c5db0fe87 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4bd440f8-74d2-46c8-9992-fcd66c661ea0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=fbc03527-eba3-480e-b96b-3b2c5db0fe87&request_guid=4bd440f8-74d2-46c8-9992-fcd66c661ea0 HTTP/1.1" 200 1800 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838fb-0502-afee-1a4b-0303c5d37df3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838fb-0502-afee-1a4b-0303c5d37df3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838fb-0502-afee-1a4b-0303c5d37df3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e1e15d73-e96e-4de1-9377-cb57c09ebb8a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838fb-0502-afee-1a4b-0303c5d37df3?request_guid=e1e15d73-e96e-4de1-9377-cb57c09ebb8a HTTP/1.1" 200 2167 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838fb-0502-afee-1a4b-0303c5d37df3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 58ac04a5-0174-4d74-8b3a-3e67bcd05618 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838fb-0502-afee-1a4b-0303c5d37df3?request_guid=58ac04a5-0174-4d74-8b3a-3e67bcd05618 HTTP/1.1" 200 2168 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838fb-0502-afee-1a4b-0303c5d37df3'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: bc29aa54-6418-4755-be4b-1d23601ea1fe +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838fb-0502-afee-1a4b-0303c5d37df3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838fb-0502-afee-1a4b-0303c5d37df3'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 29802fd5-f036-40df-8461-472123ae1655 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=bc29aa54-6418-4755-be4b-1d23601ea1fe&request_guid=29802fd5-f036-40df-8461-472123ae1655 HTTP/1.1" 200 1797 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838fb-0502-b0de-1a4b-0303c5d3869b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838fb-0502-b0de-1a4b-0303c5d3869b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 23a822c8-4e84-44fd-9efa-1d9571fe8f5a +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f8b794f6-4de8-441a-8090-80b223c2bb63 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=23a822c8-4e84-44fd-9efa-1d9571fe8f5a&request_guid=f8b794f6-4de8-441a-8090-80b223c2bb63 HTTP/1.1" 200 2286 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838fb-0502-afee-1a4b-0303c5d37e1b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838fb-0502-afee-1a4b-0303c5d37e1b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838fb-0502-afee-1a4b-0303c5d37e1b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e7154b59-27df-4318-9b74-f87cf2d3d767 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838fb-0502-afee-1a4b-0303c5d37e1b?request_guid=e7154b59-27df-4318-9b74-f87cf2d3d767 HTTP/1.1" 200 1680 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838fb-0502-afee-1a4b-0303c5d37e1b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6b2d0d0f-e67d-4d0d-be0e-c8d22cb7797a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838fb-0502-afee-1a4b-0303c5d37e1b?request_guid=6b2d0d0f-e67d-4d0d-be0e-c8d22cb7797a HTTP/1.1" 200 1680 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838fb-0502-afee-1a4b-0303c5d37e1b'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: b534009b-09a1-419d-84f3-cfaead2d6b8e +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838fb-0502-afee-1a4b-0303c5d37e1b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838fb-0502-afee-1a4b-0303c5d37e1b'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e1a6fa77-6f70-481b-8a8a-81297b6167c5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b534009b-09a1-419d-84f3-cfaead2d6b8e&request_guid=e1a6fa77-6f70-481b-8a8a-81297b6167c5 HTTP/1.1" 200 2282 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838fb-0502-b0de-1a4b-0303c5d386bb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838fb-0502-b0de-1a4b-0303c5d386bb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3244s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3291s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.335s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=3f0b6e83-6745-4849-8c96-f8eed5ae817b +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: afa1dec0-456f-407d-9d21-dad86a9eff31 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1744608552912 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1744608552912 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1744608859600 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1744608859600 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1744608859600 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1744608859600 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1744608552912 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1744608552912 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=3f0b6e83-6745-4849-8c96-f8eed5ae817b&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=afa1dec0-456f-407d-9d21-dad86a9eff31 HTTP/1.1" 200 1543 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=b58ea2f6-e999-4d6a-9343-254c4bf5154c +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 33125881-1ed0-454d-8469-ce16281a874b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=b58ea2f6-e999-4d6a-9343-254c4bf5154c&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=33125881-1ed0-454d-8469-ce16281a874b HTTP/1.1" 200 1549 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00186s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 5a1b4203-83e0-4ccb-b5bd-ed4a76152f80 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 89f9c706-d287-456b-ac4f-3624c4343b5d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5a1b4203-83e0-4ccb-b5bd-ed4a76152f80&request_guid=89f9c706-d287-456b-ac4f-3624c4343b5d HTTP/1.1" 200 2277 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838fc-0502-ae87-1a4b-0303c5d3f42f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838fc-0502-ae87-1a4b-0303c5d3f42f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838fc-0502-ae87-1a4b-0303c5d3f42f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b5192bf9-edfa-4d33-8288-f6e4373cf7b3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838fc-0502-ae87-1a4b-0303c5d3f42f?request_guid=b5192bf9-edfa-4d33-8288-f6e4373cf7b3 HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838fc-0502-ae87-1a4b-0303c5d3f42f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1b47a01f-f1af-4095-9b8f-475dc73dd0b4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838fc-0502-ae87-1a4b-0303c5d3f42f?request_guid=1b47a01f-f1af-4095-9b8f-475dc73dd0b4 HTTP/1.1" 200 1852 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838fc-0502-ae87-1a4b-0303c5d3f42f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 0cd18950-36e7-44a8-8e35-56fd399ba58c +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838fc-0502-ae87-1a4b-0303c5d3f42f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838fc-0502-ae87-1a4b-0303c5d3f42f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e002e719-e6f2-4f6e-aae9-fd247ffdceb4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0cd18950-36e7-44a8-8e35-56fd399ba58c&request_guid=e002e719-e6f2-4f6e-aae9-fd247ffdceb4 HTTP/1.1" 200 2277 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838fc-0502-afee-1a4b-0303c5d3ce8f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838fc-0502-afee-1a4b-0303c5d3ce8f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: cf6b28c9-ff09-48bd-9e6d-8f3fe828378f +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1e0e0d62-bc33-4e4d-9cf8-199facce5b29 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cf6b28c9-ff09-48bd-9e6d-8f3fe828378f&request_guid=1e0e0d62-bc33-4e4d-9cf8-199facce5b29 HTTP/1.1" 200 1796 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838fc-0502-b1d6-1a4b-0303c5d3e60f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838fc-0502-b1d6-1a4b-0303c5d3e60f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838fc-0502-b1d6-1a4b-0303c5d3e60f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c9f4d162-b816-4978-a7a1-e1385ffe2e16 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838fc-0502-b1d6-1a4b-0303c5d3e60f?request_guid=c9f4d162-b816-4978-a7a1-e1385ffe2e16 HTTP/1.1" 200 2170 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838fc-0502-b1d6-1a4b-0303c5d3e60f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 614fd4a6-56f2-46bc-88b5-795753ef0d05 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838fc-0502-b1d6-1a4b-0303c5d3e60f?request_guid=614fd4a6-56f2-46bc-88b5-795753ef0d05 HTTP/1.1" 200 2170 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838fc-0502-b1d6-1a4b-0303c5d3e60f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 36264505-15fd-4a13-a1f7-7530c6b7335f +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838fc-0502-b1d6-1a4b-0303c5d3e60f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838fc-0502-b1d6-1a4b-0303c5d3e60f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 71113d7a-e3b8-45ba-bfdb-32c8245b0e2a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=36264505-15fd-4a13-a1f7-7530c6b7335f&request_guid=71113d7a-e3b8-45ba-bfdb-32c8245b0e2a HTTP/1.1" 200 1795 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838fc-0502-b1d6-1a4b-0303c5d3e673 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838fc-0502-b1d6-1a4b-0303c5d3e673 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 8ee3d251-f181-4aee-a593-3bfa3b6ab538 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1818007f-776a-402d-8d23-f45f96bdcd87 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=8ee3d251-f181-4aee-a593-3bfa3b6ab538&request_guid=1818007f-776a-402d-8d23-f45f96bdcd87 HTTP/1.1" 200 2280 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838fc-0502-b1d6-1a4b-0303c5d3e683 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838fc-0502-b1d6-1a4b-0303c5d3e683 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838fc-0502-b1d6-1a4b-0303c5d3e683' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cc7e8630-76da-4918-b060-45c671ac1b71 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838fc-0502-b1d6-1a4b-0303c5d3e683?request_guid=cc7e8630-76da-4918-b060-45c671ac1b71 HTTP/1.1" 200 1673 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a838fc-0502-b1d6-1a4b-0303c5d3e683' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c5847731-253e-4f58-af15-63b7932c0e91 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a838fc-0502-b1d6-1a4b-0303c5d3e683?request_guid=c5847731-253e-4f58-af15-63b7932c0e91 HTTP/1.1" 200 1673 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a838fc-0502-b1d6-1a4b-0303c5d3e683'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: e513e41f-ac03-446c-8117-2774d847a309 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a838fc-0502-b1d6-1a4b-0303c5d3e683'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a838fc-0502-b1d6-1a4b-0303c5d3e683'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 11e394a2-0b37-4cd0-a002-82e132b3c977 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e513e41f-ac03-446c-8117-2774d847a309&request_guid=11e394a2-0b37-4cd0-a002-82e132b3c977 HTTP/1.1" 200 2284 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a838fc-0502-af26-1a4b-0303c5d403d7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a838fc-0502-af26-1a4b-0303c5d403d7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3033s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3077s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3114s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=51a1e423-27ce-46d4-8391-799a3b56224d +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 27f81fb0-944f-49b6-9c30-f03b323cc2ac +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2979436488656 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2979436488656 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2979436795344 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2979436795344 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2979436795344 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2979436795344 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2979436488656 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2979436488656 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=51a1e423-27ce-46d4-8391-799a3b56224d&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=27f81fb0-944f-49b6-9c30-f03b323cc2ac HTTP/1.1" 200 1548 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=bd1b7872-48d6-49b7-921e-8241d067cf7a +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: af74772b-f7da-4c61-8125-d543a2763a83 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=bd1b7872-48d6-49b7-921e-8241d067cf7a&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=af74772b-f7da-4c61-8125-d543a2763a83 HTTP/1.1" 200 1546 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00222s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: e3c52f68-d714-4693-bfc3-240aa1c3dc11 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 221901e5-5cc9-46f3-9a70-656b48ea0a7e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e3c52f68-d714-4693-bfc3-240aa1c3dc11&request_guid=221901e5-5cc9-46f3-9a70-656b48ea0a7e HTTP/1.1" 200 2279 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83901-0502-ae87-1a4b-0303c5d5422b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83901-0502-ae87-1a4b-0303c5d5422b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83901-0502-ae87-1a4b-0303c5d5422b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 76359c71-7e52-45ef-addd-627d71964b8f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83901-0502-ae87-1a4b-0303c5d5422b?request_guid=76359c71-7e52-45ef-addd-627d71964b8f HTTP/1.1" 200 1856 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83901-0502-ae87-1a4b-0303c5d5422b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ebac1532-3154-42b8-9e2b-8a4e43bdeedd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83901-0502-ae87-1a4b-0303c5d5422b?request_guid=ebac1532-3154-42b8-9e2b-8a4e43bdeedd HTTP/1.1" 200 1856 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83901-0502-ae87-1a4b-0303c5d5422b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 278122f9-2e60-4bb2-b9d2-f481b15749ca +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83901-0502-ae87-1a4b-0303c5d5422b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83901-0502-ae87-1a4b-0303c5d5422b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cbb0460c-c616-41e5-b928-3b29e99f2a00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=278122f9-2e60-4bb2-b9d2-f481b15749ca&request_guid=cbb0460c-c616-41e5-b928-3b29e99f2a00 HTTP/1.1" 200 2278 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83901-0502-afee-1a4b-0303c5d50ea3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83901-0502-afee-1a4b-0303c5d50ea3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 4c1b9106-7de5-4e26-a820-6770d715b730 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 55883c1e-f0fe-4bde-901e-c79ea3e0ec2b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4c1b9106-7de5-4e26-a820-6770d715b730&request_guid=55883c1e-f0fe-4bde-901e-c79ea3e0ec2b HTTP/1.1" 200 1796 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83901-0502-b1d6-1a4b-0303c5d518eb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83901-0502-b1d6-1a4b-0303c5d518eb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83901-0502-b1d6-1a4b-0303c5d518eb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8521597b-0fdc-401c-afde-c54666fabc4c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83901-0502-b1d6-1a4b-0303c5d518eb?request_guid=8521597b-0fdc-401c-afde-c54666fabc4c HTTP/1.1" 200 2168 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83901-0502-b1d6-1a4b-0303c5d518eb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fc383277-a09c-44c9-b182-99ed17bb81d9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83901-0502-b1d6-1a4b-0303c5d518eb?request_guid=fc383277-a09c-44c9-b182-99ed17bb81d9 HTTP/1.1" 200 2168 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83901-0502-b1d6-1a4b-0303c5d518eb'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 29b32f59-edbd-4b38-a317-f1c0e54d72e8 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83901-0502-b1d6-1a4b-0303c5d518eb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83901-0502-b1d6-1a4b-0303c5d518eb'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1b66d02d-ca76-4561-810b-e5b45c6d0df2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=29b32f59-edbd-4b38-a317-f1c0e54d72e8&request_guid=1b66d02d-ca76-4561-810b-e5b45c6d0df2 HTTP/1.1" 200 1799 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83901-0502-af26-1a4b-0303c5d5285f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83901-0502-af26-1a4b-0303c5d5285f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: c7c71535-7acd-42e8-bc8d-f6125ee5dd3e +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5b45c22a-34f0-4ee0-94e4-74b59f1624f2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c7c71535-7acd-42e8-bc8d-f6125ee5dd3e&request_guid=5b45c22a-34f0-4ee0-94e4-74b59f1624f2 HTTP/1.1" 200 2288 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83901-0502-ae87-1a4b-0303c5d542fb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83901-0502-ae87-1a4b-0303c5d542fb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83901-0502-ae87-1a4b-0303c5d542fb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 55d09fc4-d199-4cbb-b858-a7a766e7d156 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83901-0502-ae87-1a4b-0303c5d542fb?request_guid=55d09fc4-d199-4cbb-b858-a7a766e7d156 HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83901-0502-ae87-1a4b-0303c5d542fb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 87956847-b33e-494a-892d-dd4bc481c44d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83901-0502-ae87-1a4b-0303c5d542fb?request_guid=87956847-b33e-494a-892d-dd4bc481c44d HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83901-0502-ae87-1a4b-0303c5d542fb'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: ba59a613-4798-4012-9187-803f561c7e6d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83901-0502-ae87-1a4b-0303c5d542fb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83901-0502-ae87-1a4b-0303c5d542fb'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f5eb3c09-874d-4c11-a5e8-4a8ce7b85b36 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ba59a613-4798-4012-9187-803f561c7e6d&request_guid=f5eb3c09-874d-4c11-a5e8-4a8ce7b85b36 HTTP/1.1" 200 2288 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83901-0502-afee-1a4b-0303c5d50f33 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83901-0502-afee-1a4b-0303c5d50f33 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3144s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3192s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3233s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=64fb798a-ad41-4525-bae5-ee386910ea21 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 74b9c1fc-9c46-45b1-9cb1-8d1ff66a4a7f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2003398027216 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2003398027216 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2003398317520 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2003398317520 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2003398317520 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2003398317520 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2003398027216 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2003398027216 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=64fb798a-ad41-4525-bae5-ee386910ea21&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=74b9c1fc-9c46-45b1-9cb1-8d1ff66a4a7f HTTP/1.1" 200 1543 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=4b47306b-1788-44da-a1ba-ab39b63cd414 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d835343d-c049-42a4-9f36-db8917b64d76 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=4b47306b-1788-44da-a1ba-ab39b63cd414&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=d835343d-c049-42a4-9f36-db8917b64d76 HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00159s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 002ef321-cdd9-418f-97b9-7039009ea224 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 51c888ad-e1fb-4de9-bced-470852f4898a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=002ef321-cdd9-418f-97b9-7039009ea224&request_guid=51c888ad-e1fb-4de9-bced-470852f4898a HTTP/1.1" 200 2274 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83903-0502-b0de-1a4b-0303c5d5d073 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83903-0502-b0de-1a4b-0303c5d5d073 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83903-0502-b0de-1a4b-0303c5d5d073' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 06f0cdeb-5c27-47b9-b782-67671e8ff09a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83903-0502-b0de-1a4b-0303c5d5d073?request_guid=06f0cdeb-5c27-47b9-b782-67671e8ff09a HTTP/1.1" 200 1865 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83903-0502-b0de-1a4b-0303c5d5d073' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f7c0937e-4b9d-4418-bce4-713c7f4db50a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83903-0502-b0de-1a4b-0303c5d5d073?request_guid=f7c0937e-4b9d-4418-bce4-713c7f4db50a HTTP/1.1" 200 1864 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83903-0502-b0de-1a4b-0303c5d5d073'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: d6a347ec-06c4-4ba6-bb33-ba5add092fcb +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83903-0502-b0de-1a4b-0303c5d5d073'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83903-0502-b0de-1a4b-0303c5d5d073'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0558833f-5b11-413c-8c1f-f52bf0d0cbab +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d6a347ec-06c4-4ba6-bb33-ba5add092fcb&request_guid=0558833f-5b11-413c-8c1f-f52bf0d0cbab HTTP/1.1" 200 2278 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83903-0502-afee-1a4b-0303c5d5aa2b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83903-0502-afee-1a4b-0303c5d5aa2b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 76b079e4-9ce1-4fa0-92e8-7623af018861 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 89dbb836-eb75-4711-8e39-d378ab20595f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=76b079e4-9ce1-4fa0-92e8-7623af018861&request_guid=89dbb836-eb75-4711-8e39-d378ab20595f HTTP/1.1" 200 1796 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83903-0502-b1d6-1a4b-0303c5d5c183 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83903-0502-b1d6-1a4b-0303c5d5c183 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83903-0502-b1d6-1a4b-0303c5d5c183' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c6982e67-6b1c-48b7-92ca-694487d57442 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83903-0502-b1d6-1a4b-0303c5d5c183?request_guid=c6982e67-6b1c-48b7-92ca-694487d57442 HTTP/1.1" 200 2187 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83903-0502-b1d6-1a4b-0303c5d5c183' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3d042707-9bc4-4365-8c11-e210d453142b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83903-0502-b1d6-1a4b-0303c5d5c183?request_guid=3d042707-9bc4-4365-8c11-e210d453142b HTTP/1.1" 200 2188 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83903-0502-b1d6-1a4b-0303c5d5c183'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 2f0b6e3b-2d5d-411b-b2a2-ed119b11bc59 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83903-0502-b1d6-1a4b-0303c5d5c183'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83903-0502-b1d6-1a4b-0303c5d5c183'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a6d84169-aa20-4a40-a6f3-9c5b888e9559 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2f0b6e3b-2d5d-411b-b2a2-ed119b11bc59&request_guid=a6d84169-aa20-4a40-a6f3-9c5b888e9559 HTTP/1.1" 200 1800 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83903-0502-afee-1a4b-0303c5d5aa4f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83903-0502-afee-1a4b-0303c5d5aa4f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 75789a4b-0e37-43ec-bffe-271f1a43b950 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ea7ec495-759a-46cd-84a9-471436b221bf +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=75789a4b-0e37-43ec-bffe-271f1a43b950&request_guid=ea7ec495-759a-46cd-84a9-471436b221bf HTTP/1.1" 200 2289 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83903-0502-ae87-1a4b-0303c5d59c1b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83903-0502-ae87-1a4b-0303c5d59c1b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83903-0502-ae87-1a4b-0303c5d59c1b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f4e7c47d-22b6-48c7-93d5-577da42255b4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83903-0502-ae87-1a4b-0303c5d59c1b?request_guid=f4e7c47d-22b6-48c7-93d5-577da42255b4 HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83903-0502-ae87-1a4b-0303c5d59c1b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a06d8475-4f96-422b-8a2d-efb0a023cfab +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83903-0502-ae87-1a4b-0303c5d59c1b?request_guid=a06d8475-4f96-422b-8a2d-efb0a023cfab HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83903-0502-ae87-1a4b-0303c5d59c1b'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 18fe376b-12ce-4a47-b48d-65803bf341be +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83903-0502-ae87-1a4b-0303c5d59c1b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83903-0502-ae87-1a4b-0303c5d59c1b'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 981620f1-7e46-4bf6-988d-2cd693e2d675 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=18fe376b-12ce-4a47-b48d-65803bf341be&request_guid=981620f1-7e46-4bf6-988d-2cd693e2d675 HTTP/1.1" 200 2289 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83903-0502-ae87-1a4b-0303c5d59c2b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83903-0502-ae87-1a4b-0303c5d59c2b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.305s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3116s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3172s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=daad02ea-1f82-4851-91f8-c586b8209d87 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9ecfb384-8234-4ef2-ac21-c1c33fec9eed +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2619923228624 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2619923228624 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2619923535312 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2619923535312 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2619923535312 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2619923535312 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2619923228624 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2619923228624 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=daad02ea-1f82-4851-91f8-c586b8209d87&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=9ecfb384-8234-4ef2-ac21-c1c33fec9eed HTTP/1.1" 200 1548 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=6a7ece3f-ce18-4719-912f-7315e4517be0 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 131194ae-d0ed-4bc4-bd1f-ce9662f939c3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=6a7ece3f-ce18-4719-912f-7315e4517be0&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=131194ae-d0ed-4bc4-bd1f-ce9662f939c3 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00172s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: f06c56be-2d0f-4345-b143-47589dc3d49a +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4cfa4dcc-bff1-407a-a198-1e5d5be707a1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f06c56be-2d0f-4345-b143-47589dc3d49a&request_guid=4cfa4dcc-bff1-407a-a198-1e5d5be707a1 HTTP/1.1" 200 2279 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83905-0502-afee-1a4b-0303c5d5ff63 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83905-0502-afee-1a4b-0303c5d5ff63 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83905-0502-afee-1a4b-0303c5d5ff63' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ad9049dc-c605-4dae-b311-5743c696e672 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83905-0502-afee-1a4b-0303c5d5ff63?request_guid=ad9049dc-c605-4dae-b311-5743c696e672 HTTP/1.1" 200 1840 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83905-0502-afee-1a4b-0303c5d5ff63' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 90df10a4-089f-4432-86c5-376216ef3cc7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83905-0502-afee-1a4b-0303c5d5ff63?request_guid=90df10a4-089f-4432-86c5-376216ef3cc7 HTTP/1.1" 200 1840 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83905-0502-afee-1a4b-0303c5d5ff63'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: d8fe5dbd-16fd-4060-bc58-7821b417cbdc +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83905-0502-afee-1a4b-0303c5d5ff63'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83905-0502-afee-1a4b-0303c5d5ff63'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2953a188-c997-4daa-aca7-8854a12a70d6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d8fe5dbd-16fd-4060-bc58-7821b417cbdc&request_guid=2953a188-c997-4daa-aca7-8854a12a70d6 HTTP/1.1" 200 2279 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83905-0502-ae87-1a4b-0303c5d6323b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83905-0502-ae87-1a4b-0303c5d6323b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: f3e221eb-4a10-444b-9ad7-b4816882e237 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 369684af-117f-42e1-9c6a-03196088e843 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f3e221eb-4a10-444b-9ad7-b4816882e237&request_guid=369684af-117f-42e1-9c6a-03196088e843 HTTP/1.1" 200 1799 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83905-0502-b0de-1a4b-0303c5d6245f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83905-0502-b0de-1a4b-0303c5d6245f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83905-0502-b0de-1a4b-0303c5d6245f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 26987dd4-d310-4804-91b6-38b33db3333b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83905-0502-b0de-1a4b-0303c5d6245f?request_guid=26987dd4-d310-4804-91b6-38b33db3333b HTTP/1.1" 200 2165 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83905-0502-b0de-1a4b-0303c5d6245f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 22eada0b-9865-4f60-a5bd-08d548bce92c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83905-0502-b0de-1a4b-0303c5d6245f?request_guid=22eada0b-9865-4f60-a5bd-08d548bce92c HTTP/1.1" 200 2165 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83905-0502-b0de-1a4b-0303c5d6245f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: a923e2f5-9429-4f5f-9e1d-3e6291b6eb7f +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83905-0502-b0de-1a4b-0303c5d6245f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83905-0502-b0de-1a4b-0303c5d6245f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e6a1e34a-95da-4390-af32-12c95a7440d9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a923e2f5-9429-4f5f-9e1d-3e6291b6eb7f&request_guid=e6a1e34a-95da-4390-af32-12c95a7440d9 HTTP/1.1" 200 1801 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83905-0502-ae87-1a4b-0303c5d63273 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83905-0502-ae87-1a4b-0303c5d63273 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 360df9fc-1fd9-4a13-b241-fb17ad62f31f +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a4aacc91-873c-458e-aba7-4db2d24f2853 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=360df9fc-1fd9-4a13-b241-fb17ad62f31f&request_guid=a4aacc91-873c-458e-aba7-4db2d24f2853 HTTP/1.1" 200 2280 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83905-0502-b0de-1a4b-0303c5d6247f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83905-0502-b0de-1a4b-0303c5d6247f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83905-0502-b0de-1a4b-0303c5d6247f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 95614730-ae9f-45ed-b552-8cfb5da8a03d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83905-0502-b0de-1a4b-0303c5d6247f?request_guid=95614730-ae9f-45ed-b552-8cfb5da8a03d HTTP/1.1" 200 1683 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83905-0502-b0de-1a4b-0303c5d6247f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 71041a94-5a3a-4e35-9fc6-8b74d455074c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83905-0502-b0de-1a4b-0303c5d6247f?request_guid=71041a94-5a3a-4e35-9fc6-8b74d455074c HTTP/1.1" 200 1683 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83905-0502-b0de-1a4b-0303c5d6247f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 1845a42a-abad-4c74-b4cc-a4722b235037 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83905-0502-b0de-1a4b-0303c5d6247f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83905-0502-b0de-1a4b-0303c5d6247f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: db427a1a-974a-4264-a2b6-0dcaffca2522 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1845a42a-abad-4c74-b4cc-a4722b235037&request_guid=db427a1a-974a-4264-a2b6-0dcaffca2522 HTTP/1.1" 200 2284 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83905-0502-ae87-1a4b-0303c5d6329b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83905-0502-ae87-1a4b-0303c5d6329b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3002s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.307s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3118s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=a9472d00-c0f9-45b1-bc0c-a211c3d52dcd +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c8e1a192-596d-4ed8-a313-9dfd398f1db6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2548834953168 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2548834953168 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2548835259856 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2548835259856 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2548835259856 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2548835259856 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2548834953168 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2548834953168 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=a9472d00-c0f9-45b1-bc0c-a211c3d52dcd&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=c8e1a192-596d-4ed8-a313-9dfd398f1db6 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=19c0b241-a429-41c8-a0c0-ead2e07294f1 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bf11a899-8ac8-4c7f-a968-10852a26e734 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=19c0b241-a429-41c8-a0c0-ead2e07294f1&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=bf11a899-8ac8-4c7f-a968-10852a26e734 HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00181s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 35026ac4-76f5-4a9f-8403-50d356abcfa8 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6f984ca9-ca84-49e8-85b1-d74544096e7d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=35026ac4-76f5-4a9f-8403-50d356abcfa8&request_guid=6f984ca9-ca84-49e8-85b1-d74544096e7d HTTP/1.1" 200 2275 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83905-0502-b0de-1a4b-0303c5d62e9f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83905-0502-b0de-1a4b-0303c5d62e9f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83905-0502-b0de-1a4b-0303c5d62e9f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 18c44237-0279-46a1-8c24-b07eb9ccbeb9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83905-0502-b0de-1a4b-0303c5d62e9f?request_guid=18c44237-0279-46a1-8c24-b07eb9ccbeb9 HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83905-0502-b0de-1a4b-0303c5d62e9f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d6c44122-9a41-485b-b610-1799e47bf1a1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83905-0502-b0de-1a4b-0303c5d62e9f?request_guid=d6c44122-9a41-485b-b610-1799e47bf1a1 HTTP/1.1" 200 1854 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83905-0502-b0de-1a4b-0303c5d62e9f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: c02a7f51-8e79-48c9-a300-d29334acf301 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83905-0502-b0de-1a4b-0303c5d62e9f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83905-0502-b0de-1a4b-0303c5d62e9f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9fd9ecea-8656-4716-8ef2-5e51026515d1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c02a7f51-8e79-48c9-a300-d29334acf301&request_guid=9fd9ecea-8656-4716-8ef2-5e51026515d1 HTTP/1.1" 200 2274 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83905-0502-b0de-1a4b-0303c5d62ecf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83905-0502-b0de-1a4b-0303c5d62ecf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: afa79cf8-8dd9-4a96-b640-780a5e9f6894 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 37c24ad6-d78f-460b-9030-a968359e4c30 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=afa79cf8-8dd9-4a96-b640-780a5e9f6894&request_guid=37c24ad6-d78f-460b-9030-a968359e4c30 HTTP/1.1" 200 1796 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83905-0502-b1d6-1a4b-0303c5d654b7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83905-0502-b1d6-1a4b-0303c5d654b7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83905-0502-b1d6-1a4b-0303c5d654b7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2f5cfc99-9927-4ee1-921e-cf5ebad0f160 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83905-0502-b1d6-1a4b-0303c5d654b7?request_guid=2f5cfc99-9927-4ee1-921e-cf5ebad0f160 HTTP/1.1" 200 2163 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83905-0502-b1d6-1a4b-0303c5d654b7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b1b532f7-501e-460c-901d-2c5d24e607aa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83905-0502-b1d6-1a4b-0303c5d654b7?request_guid=b1b532f7-501e-460c-901d-2c5d24e607aa HTTP/1.1" 200 2163 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83905-0502-b1d6-1a4b-0303c5d654b7'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 1aec2aaa-4fb2-41c8-9ee0-4b4b45943158 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83905-0502-b1d6-1a4b-0303c5d654b7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83905-0502-b1d6-1a4b-0303c5d654b7'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d6b6ceae-9d58-4ae3-92f2-4b96d37a23ef +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1aec2aaa-4fb2-41c8-9ee0-4b4b45943158&request_guid=d6b6ceae-9d58-4ae3-92f2-4b96d37a23ef HTTP/1.1" 200 1801 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83905-0502-afee-1a4b-0303c5d64b57 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83905-0502-afee-1a4b-0303c5d64b57 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: f2100667-77ba-451a-a09e-fc87d2f102cf +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bc4b82b7-bda0-430b-bc3b-961aea7b1bd9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f2100667-77ba-451a-a09e-fc87d2f102cf&request_guid=bc4b82b7-bda0-430b-bc3b-961aea7b1bd9 HTTP/1.1" 200 2289 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83905-0502-ae87-1a4b-0303c5d63ecb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83905-0502-ae87-1a4b-0303c5d63ecb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83905-0502-ae87-1a4b-0303c5d63ecb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d28eaed4-cab2-488d-b4fd-53092b8ae7cd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83905-0502-ae87-1a4b-0303c5d63ecb?request_guid=d28eaed4-cab2-488d-b4fd-53092b8ae7cd HTTP/1.1" 200 1680 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83905-0502-ae87-1a4b-0303c5d63ecb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3e1210a0-741f-4b31-9e54-26200a8eb326 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83905-0502-ae87-1a4b-0303c5d63ecb?request_guid=3e1210a0-741f-4b31-9e54-26200a8eb326 HTTP/1.1" 200 1679 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83905-0502-ae87-1a4b-0303c5d63ecb'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 5fcfc77e-cd4b-4c82-836d-af1d475dfdd3 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83905-0502-ae87-1a4b-0303c5d63ecb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83905-0502-ae87-1a4b-0303c5d63ecb'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ec4edd65-4f59-4fbb-9487-fbed92b4254a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5fcfc77e-cd4b-4c82-836d-af1d475dfdd3&request_guid=ec4edd65-4f59-4fbb-9487-fbed92b4254a HTTP/1.1" 200 2287 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83905-0502-af26-1a4b-0303c5d66177 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83905-0502-af26-1a4b-0303c5d66177 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 20.18s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=07411ca8-5d25-42ae-bf2f-3af827861e47 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a477bbf2-8a2c-49e9-871a-64f55eeecb5b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=07411ca8-5d25-42ae-bf2f-3af827861e47&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=a477bbf2-8a2c-49e9-871a-64f55eeecb5b HTTP/1.1" 200 1543 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 0ec169fb-9188-42c6-a2d3-d48c1091e4da +DEBUG:snowflake.connector.cursor:running query [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f5b5804f-732e-4431-9e6a-cc324981241f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0ec169fb-9188-42c6-a2d3-d48c1091e4da&request_guid=f5b5804f-732e-4431-9e6a-cc324981241f HTTP/1.1" 200 4958 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83906-0502-b0de-1a4b-0303c5d6830f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83906-0502-b0de-1a4b-0303c5d6830f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=57 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83906-0502-b0de-1a4b-0303c5d6830f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1d44d0f2-1574-4246-b320-9c7e3bd4b5bb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83906-0502-b0de-1a4b-0303c5d6830f?request_guid=1d44d0f2-1574-4246-b320-9c7e3bd4b5bb HTTP/1.1" 200 1975 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83906-0502-b0de-1a4b-0303c5d6830f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3f569aff-0780-4a34-89f7-d4c6744e6706 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83906-0502-b0de-1a4b-0303c5d6830f?request_guid=3f569aff-0780-4a34-89f7-d4c6744e6706 HTTP/1.1" 200 1973 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83906-0502-b0de-1a4b-0303c5d6830f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: c088e32f-08a5-4a72-8771-7a5935c94a65 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83906-0502-b0de-1a4b-0303c5d6830f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83906-0502-b0de-1a4b-0303c5d6830f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f62aec8d-ae65-46ac-82de-10de5b396c63 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c088e32f-08a5-4a72-8771-7a5935c94a65&request_guid=f62aec8d-ae65-46ac-82de-10de5b396c63 HTTP/1.1" 200 4940 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83906-0502-b0de-1a4b-0303c5d68343 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83906-0502-b0de-1a4b-0303c5d68343 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=57 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_2_3 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_2_4 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_2_5 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_2_6 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_3_0 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_3_4 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_3_5 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_3_6 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_4_4 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_4_6 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_4_7 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_5_0 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_5_1 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_5_2 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_5_3 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_5_4 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_6_0 +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_6_1 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_6_2 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_6_6 +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_7_0 +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_7_1 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 57 has id: data_0_7_6 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:filelock:Attempting to acquire lock 2548838643216 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:using OCSP response cache +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:filelock:Lock 2548838643216 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Certificate is NOT attached in Basic OCSP Response. Using issuer's certificate +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the OCSP response is signed by the issuer. +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:filelock:Attempting to acquire lock 2548838974128 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:using OCSP response cache +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Certificate is NOT attached in Basic OCSP Response. Using issuer's certificate +DEBUG:filelock:Timeout on acquiring lock 2548838974128 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:using OCSP response cache +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the OCSP response is signed by the issuer. +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:snowflake.connector.ocsp_asn1crypto:Certificate is NOT attached in Basic OCSP Response. Using issuer's certificate +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the OCSP response is signed by the issuer. +DEBUG:filelock:Attempting to release lock 2548838643216 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2548838643216 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:using OCSP response cache +DEBUG:snowflake.connector.ocsp_asn1crypto:Certificate is NOT attached in Basic OCSP Response. Using issuer's certificate +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the OCSP response is signed by the issuer. +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=mbajJ5lseNNHv%2B%2Fu3BBAePthc6M%3D HTTP/1.1" 200 35090 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=xYUi3eI3ANrylo%2BYlxwaeTVNeaM%3D HTTP/1.1" 200 133478 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=G%2FGNmfoLcxUh9Hp%2FP%2ByT4byJDpU%3D HTTP/1.1" 200 465916 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=HwrovyRDy79ylbt2r2Cjz7eRB9g%3D HTTP/1.1" 200 964549 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=UypHua%2B5T8L%2BaBpAwj772DW8vkA%3D HTTP/1.1" 200 264297 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=YldmEuF0zzURXU1tjy0JpNbTUo8%3D HTTP/1.1" 200 1747853 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=kTRUQxXxsoKV7FSRDNpjQ0QjLZs%3D HTTP/1.1" 200 264690 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 993 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=MDCY6PwoLoDrSQfhuIIL68FRrBQ%3D HTTP/1.1" 200 35019 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1982 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=bu%2BQMy95ka9AEBnIXhFSPt6TjlY%3D HTTP/1.1" 200 133377 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=0oHvEbdgNqmbP3inQmo9EgtWOAg%3D HTTP/1.1" 200 261719 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2546 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2535 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2545 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1911 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=DVEDzBR2ThFbdhjoopzqQEp6B%2Fk%3D HTTP/1.1" 200 466986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=8m6LAogZ1jhv4%2F45u%2FL4NTgvyEg%3D HTTP/1.1" 200 969217 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=57NzhQ3dr522CtEw1UFskwVNDnU%3D HTTP/1.1" 200 1734762 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 988 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 989 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=m2rWGET6qUjthyMYxVkIqk6wuqc%3D HTTP/1.1" 200 2186834 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 990 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=fOvdvYBaA0PwbiNBpN8kEUjxSLI%3D HTTP/1.1" 200 33636 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=jQi9B4nsljPQqgX67vUPklUYfFQ%3D HTTP/1.1" 200 129595 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2513 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=SkReoLkbe0LcKIXTAkr%2FMcueE0c%3D HTTP/1.1" 200 256381 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2520 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2516 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=i4Vbog7iyy2e8QYMjUl%2B7WpnZ%2BA%3D HTTP/1.1" 200 462463 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2535 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2531 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 527 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=7RXLLlBN0kuvM4iXn74%2B0sslQ%2FY%3D HTTP/1.1" 200 967630 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=iY873vDqZMeiC5vF2M%2FQQVrDd2A%3D HTTP/1.1" 200 1757664 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=dCduog9z9xLKiGrhpfgtn5KmCA8%3D HTTP/1.1" 200 131960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=yrjNSQs%2FPXEshpCcGVx2p2Sv6G8%3D HTTP/1.1" 200 34661 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=IE67g8WZWFB13XX%2BJsEEangfH3A%3D HTTP/1.1" 200 133017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2523 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=d3vGniYJpTgZAPCPBfRUVA7qVNs%3D HTTP/1.1" 200 262868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2541 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2536 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2522 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 975 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_3 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 249 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=ig2bnLDdLZ3BcsdXmqD4i%2FSsXbY%3D HTTP/1.1" 200 464439 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=Bcxt7jJVjEEuz4CRQzei08XWS3Y%3D HTTP/1.1" 200 962759 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 497 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_6 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 497 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=3TRxbRKZ7gUOXiessPeijmsvgMY%3D HTTP/1.1" 200 1740120 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=zS6s4YKJ0I9qcGbPUdxlPmEKbkU%3D HTTP/1.1" 200 1208430 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 993 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 993 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 994 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=zZxz7HBYRLnoFsVArcK5k68LW6I%3D HTTP/1.1" 200 34475 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1987 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=kTuoX0vIpGcsUOWOVvlx7CWajow%3D HTTP/1.1" 200 131285 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1971 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2529 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=77lrdau2sgl8VpevWrHB5sm%2BRns%3D HTTP/1.1" 200 259963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2531 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2532 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2517 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2539 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2526 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=fOFlg2m5q3h8XksE8w2ettLb%2BBM%3D HTTP/1.1" 200 464061 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1125 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_4 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 249 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=XJgaOyNZW9cIbKh%2BSigFH60A%2FZo%3D HTTP/1.1" 200 963245 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_7 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=e7x0k4hoIvGeve9YmgJiHVo8z14%3D HTTP/1.1" 200 1763257 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=5aTFODt3bG%2BX8tkCB2pUR7XGt5g%3D HTTP/1.1" 200 3288578 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 993 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=3IPJK9e9Uv3nmfxMwNF%2FUeSfcwc%3D HTTP/1.1" 200 1193681 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1985 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=IHbSgCEyHPOa9XxQhzGgGiu1fgc%3D HTTP/1.1" 200 34825 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1982 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2518 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=Jaw2wnEu%2BmzG3qtvH595M28gAZU%3D HTTP/1.1" 200 132770 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2523 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2517 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 9 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 9 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 9, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2515 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=hwNO%2FEXpw0iR9xLphnA8RjWGUUE%3D HTTP/1.1" 200 261281 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2542 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2538 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2533 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2544 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2542 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2528 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=JkT9hjC3vCAXpKB8QL1Y8pkGjdY%3D HTTP/1.1" 200 463548 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 612 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_4 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=aLlVxgVNAdJEhZM0oiDyLbLxrbc%3D HTTP/1.1" 200 962977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=nBK8Qevo3potCLuyX%2BpaTIVM2dQ%3D HTTP/1.1" 200 1755693 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=6XkQluC5YXWv82k1QZuJMKrb%2B0c%3D HTTP/1.1" 200 150579 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=wPZW494GAbiFSnjW7SPl%2F%2BziFWw%3D HTTP/1.1" 200 35016 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=T4L2I7slG51cj%2B0hoSUFMu4rv84%3D HTTP/1.1" 200 133248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 41 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 42 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 42 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2523 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=xhMsn%2F5KBcWtxJnijVfcJRZPlqc%3D HTTP/1.1" 200 264485 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2539 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2526 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 42 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 43 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 43 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1089 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 43 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 44 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 44 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 44 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 45 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 45 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=CbZTRx0gtNDcmPFr1Y5DLj126MI%3D HTTP/1.1" 200 468013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 45 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 46 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 46 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=XogQFSLmcQnjj0e1INdh7TUHOWI%3D HTTP/1.1" 200 967057 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=tud9enF430y%2FpWybEUKCh%2BuLjEA%3D HTTP/1.1" 200 1752141 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 46 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 47 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 47 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_0 with existing session +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 991 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=t%2Fwznrqdbl5yM4Esu2B8DE7CCgY%3D HTTP/1.1" 200 2117103 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=corHIevO%2BCMhovmvvrE8juwohNs%3D HTTP/1.1" 200 35021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 991 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 47 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 48 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 48 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 991 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1980 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=A22deKdG1COEpilXgPqdH8ilPMM%3D HTTP/1.1" 200 133249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 48 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 49 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 49 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_2 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2524 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=QaWDQvxsazA3l%2FJIUukGm6T3U20%3D HTTP/1.1" 200 263313 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2542 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2541 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2524 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 49 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 50 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_3 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 50 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2521 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=KTyr5BURbpQWvAHk%2FPkz%2BGMR%2FY4%3D HTTP/1.1" 200 465199 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2515 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2523 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2534 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 50 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 51 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 51 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 51 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 52 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 52 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 52 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 53 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 53 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=YMFjT8jr9tq93mmKwXHPk9KkERU%3D HTTP/1.1" 200 966941 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 53 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 54 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 54 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 54 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 55 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 55 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=K9%2BtTZeT%2F84d7hIZuwo0V30VIN0%3D HTTP/1.1" 200 1756606 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1980 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133333&Signature=guYFR%2BdX2ypXUdqXY6B7Akb8uJk%3D HTTP/1.1" 200 238425 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1981 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 55 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 56 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 56 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2520 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2525 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2540 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2534 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2519 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 56 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 57 +DEBUG:snowflake.connector.result_set:user began consuming result batch 57 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1710 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 57 +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: be1649a5-a643-456e-b9c2-99589633e630 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=be1649a5-a643-456e-b9c2-99589633e630 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=1ea7f196-4f8e-4b00-9469-fddb94efc325 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d3700286-e50e-4dd5-a22d-d2ac9e8f0a3f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=1ea7f196-4f8e-4b00-9469-fddb94efc325&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=d3700286-e50e-4dd5-a22d-d2ac9e8f0a3f HTTP/1.1" 200 1546 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: bd3075b5-1ef9-4201-af6b-49ab18a69dee +DEBUG:snowflake.connector.cursor:running query [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1bc68104-5a3d-40e9-b856-961ddaebb86b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=bd3075b5-1ef9-4201-af6b-49ab18a69dee&request_guid=1bc68104-5a3d-40e9-b856-961ddaebb86b HTTP/1.1" 200 2289 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83908-0502-b1d6-1a4b-0303c5d6f57b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83908-0502-b1d6-1a4b-0303c5d6f57b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83908-0502-b1d6-1a4b-0303c5d6f57b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 80b27ce2-2411-4901-850a-fb270164a188 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83908-0502-b1d6-1a4b-0303c5d6f57b?request_guid=80b27ce2-2411-4901-850a-fb270164a188 HTTP/1.1" 200 1971 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83908-0502-b1d6-1a4b-0303c5d6f57b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 526916cd-d2f8-4e51-94c7-eea2ac056b5b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83908-0502-b1d6-1a4b-0303c5d6f57b?request_guid=526916cd-d2f8-4e51-94c7-eea2ac056b5b HTTP/1.1" 200 1972 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83908-0502-b1d6-1a4b-0303c5d6f57b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 5f501619-d038-4859-b1df-1da52940fbd4 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83908-0502-b1d6-1a4b-0303c5d6f57b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83908-0502-b1d6-1a4b-0303c5d6f57b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 56e8f019-91b1-4228-9731-a067d94f863d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5f501619-d038-4859-b1df-1da52940fbd4&request_guid=56e8f019-91b1-4228-9731-a067d94f863d HTTP/1.1" 200 2301 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83908-0502-afee-1a4b-0303c5d6eaa3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83908-0502-afee-1a4b-0303c5d6eaa3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133471&Signature=1xX5TZrUlrCf8208YJ4aUHBf5lM%3D HTTP/1.1" 200 36830 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 246 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133471&Signature=VqCXrwctBGyrtY3daraaqbjacBo%3D HTTP/1.1" 200 39942 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133471&Signature=I0S25soQ30X65MQ9HSEjp%2FIOTW4%3D HTTP/1.1" 200 137002 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 246 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 282 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 165.5s ago] ('minus_query', 1, 0) +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6c9b9c53-864b-48e1-b591-8a758a763280 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=6c9b9c53-864b-48e1-b591-8a758a763280 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.telemetry:Sending 1 logs to telemetry. Data is {'logs': [{'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_imported_packages', 'value': "{'types', 'sql', 'queue', 'sqlite3', 'fractions', 'hashlib', 'uu', 'click', 'sys', 'csv', 'asn1crypto', 'stringprep', 'contextlib', 'cachelib', 'secrets', 'urllib3', 'hmac', 'copyreg', 'traceback', 'numpy', 'common', 'webbrowser', 'warnings', 'concurrent', 'encodings', 'builtins', 'fnmatch', 'calendar', 'weakref', 'pandas', 'os', 'pydevd_file_utils', 'configparser', 'sre_parse', 'opcode', 'importlib', 'abc', 'sqlalchemy', 'random', 'http', 'flask_migrate', 'xml', 'posixpath', 'platform', 'typing', 'code', 'pathlib', 'socket', 'pydevd', 'mako', 'pkg_resources', 'bisect', 'cryptography', 'numbers', 'oscrypto', 'select', 'site', 're', 'json', 'sre_compile', 'bz2', 'signal', 'mmap', 'overrides', 'xmlrpc', 'marshal', 'ntpath', 'flask', 'gc', 'collections', 'pydev_ipython', 'copy', 'jwt', 'urllib', 'zipimport', 'stat', 'math', 'asyncio', 'markupsafe', 'time', 'pydevconsole', 'imp', 'snowflake', 'dis', 'msvcrt', 'unicodedata', 'sysconfig', 'errno', 'uuid', 'gettext', 'gzip', 'flask_sqlalchemy', 'ipaddress', 'config', 'charset_normalizer', 'werkzeug', 'difflib', 'zlib', 'codecs', 'string', 'colorama', 'alembic', 'functools', 'greenlet', 'lzma', 'datetime', 'inspect', 'tokenize', 'argparse', 'idna', 'selectors', 'requests', 'threading', 'dataclasses', 'operator', 'pyexpat', 'tempfile', 'logging', 'html', 'certifi', 'cmath', 'reprlib', 'struct', 'base64', 'pydevd_tracing', 'jinja2', 'locale', 'socketserver', 'linecache', 'nturl2path', 'function', 'mimetypes', 'plistlib', 'shlex', 'itertools', 'keyword', 'binascii', 'pkgutil', 'getpass', 'pytz', 'flask_wtf', 'contextvars', 'cffi', 'shutil', 'enum', 'heapq', 'ssl', 'atexit', 'dateutil', 'fconfig', 'sre_constants', 'pycparser', 'ctypes', 'timeit', 'glob', 'io', 'OpenSSL', 'wtforms', 'zipfile', 'ast', 'flask_session', 'pydevd_plugins', 'codeop', 'subprocess', 'token', 'nt', 'debugpy', 'psycopg2', 'itsdangerous', 'pickle', 'decimal', 'pydoc', 'cython_runtime', 'quopri', 'winreg', 'email', 'textwrap', 'filelock', 'pprint', 'genericpath', 'Cryptodome', 'typing_extensions', 'six'}"}, 'timestamp': '1668111708085'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a83905-0502-b0de-1a4b-0303c5d62e9f', 'value': -1013}, 'timestamp': '1668111710911'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a83905-0502-b0de-1a4b-0303c5d62ecf', 'value': -1014}, 'timestamp': '1668111711245'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a83905-0502-b0de-1a4b-0303c5d62ecf', 'value': 5}, 'timestamp': '1668111711250'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a83905-0502-b1d6-1a4b-0303c5d654b7', 'value': -1013}, 'timestamp': '1668111711905'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a83905-0502-afee-1a4b-0303c5d64b57', 'value': -1013}, 'timestamp': '1668111712250'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a83905-0502-afee-1a4b-0303c5d64b57', 'value': 4}, 'timestamp': '1668111712254'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a83905-0502-ae87-1a4b-0303c5d63ecb', 'value': -1014}, 'timestamp': '1668111712361'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a83905-0502-af26-1a4b-0303c5d66177', 'value': -1013}, 'timestamp': '1668111712689'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a83905-0502-af26-1a4b-0303c5d66177', 'value': 3}, 'timestamp': '1668111712692'}]}. +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7690991a-88cf-4cce-93e7-a8c9c366524d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /telemetry/send?request_guid=7690991a-88cf-4cce-93e7-a8c9c366524d HTTP/1.1" 200 86 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.telemetry:Successfully uploading metrics to telemetry. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b3a6c1b6-a209-4596-898c-1f781e8c027d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=b3a6c1b6-a209-4596-898c-1f781e8c027d HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.telemetry:Sending 1 logs to telemetry. Data is {'logs': [{'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_imported_packages', 'value': "{'types', 'sql', 'queue', 'sqlite3', 'fractions', 'hashlib', 'uu', 'click', 'sys', 'csv', 'asn1crypto', 'stringprep', 'contextlib', 'cachelib', 'secrets', 'urllib3', 'hmac', 'copyreg', 'traceback', 'numpy', 'common', 'webbrowser', 'warnings', 'concurrent', 'encodings', 'builtins', 'fnmatch', 'calendar', 'weakref', 'pandas', 'os', 'pydevd_file_utils', 'configparser', 'sre_parse', 'opcode', 'importlib', 'abc', 'sqlalchemy', 'random', 'http', 'flask_migrate', 'xml', 'posixpath', 'platform', 'typing', 'code', 'pathlib', 'socket', 'pydevd', 'mako', 'pkg_resources', 'bisect', 'cryptography', 'numbers', 'oscrypto', 'select', 'site', 're', 'json', 'sre_compile', 'bz2', 'signal', 'mmap', 'overrides', 'xmlrpc', 'marshal', 'ntpath', 'flask', 'gc', 'collections', 'pydev_ipython', 'copy', 'jwt', 'urllib', 'zipimport', 'stat', 'math', 'asyncio', 'markupsafe', 'time', 'pydevconsole', 'imp', 'snowflake', 'dis', 'msvcrt', 'unicodedata', 'sysconfig', 'errno', 'uuid', 'gettext', 'gzip', 'flask_sqlalchemy', 'ipaddress', 'config', 'charset_normalizer', 'werkzeug', 'difflib', 'zlib', 'codecs', 'string', 'colorama', 'alembic', 'functools', 'greenlet', 'lzma', 'datetime', 'inspect', 'tokenize', 'argparse', 'idna', 'selectors', 'requests', 'threading', 'dataclasses', 'operator', 'pyexpat', 'tempfile', 'logging', 'html', 'certifi', 'cmath', 'reprlib', 'struct', 'base64', 'pydevd_tracing', 'jinja2', 'locale', 'socketserver', 'linecache', 'nturl2path', 'function', 'mimetypes', 'plistlib', 'shlex', 'itertools', 'keyword', 'binascii', 'pkgutil', 'getpass', 'pytz', 'flask_wtf', 'contextvars', 'cffi', 'shutil', 'enum', 'heapq', 'ssl', 'atexit', 'dateutil', 'fconfig', 'sre_constants', 'pycparser', 'ctypes', 'timeit', 'glob', 'io', 'OpenSSL', 'wtforms', 'zipfile', 'ast', 'flask_session', 'pydevd_plugins', 'codeop', 'subprocess', 'token', 'nt', 'debugpy', 'psycopg2', 'itsdangerous', 'pickle', 'decimal', 'pydoc', 'cython_runtime', 'quopri', 'winreg', 'email', 'textwrap', 'filelock', 'pprint', 'genericpath', 'Cryptodome', 'typing_extensions', 'six'}"}, 'timestamp': '1668111709418'}]}. +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 69e09227-2746-4cda-952f-18ef6792a24a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /telemetry/send?request_guid=69e09227-2746-4cda-952f-18ef6792a24a HTTP/1.1" 200 86 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.telemetry:Successfully uploading metrics to telemetry. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f367098a-32cf-4ed5-bf3c-f24b83da6027 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=f367098a-32cf-4ed5-bf3c-f24b83da6027 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:25:22] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&submit=Submit HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:25:24] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:25:24] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:25:24] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:25:24] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:25:24] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:25:24] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:25:24] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:25:25] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:25:25] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:25:25] "GET /js/main.js HTTP/1.1" 404 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 255.2s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 255.2s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 255.2s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=0028da09-a729-497d-95b9-6d7cd14c55ba +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 511bb28a-94ae-45e8-9c31-89410079553c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=0028da09-a729-497d-95b9-6d7cd14c55ba&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=511bb28a-94ae-45e8-9c31-89410079553c HTTP/1.1" 200 1547 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=4938439b-633e-4c3b-aac9-32eff6749eec +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4c07f9b2-e7f0-4910-a168-d7bf8bac7c90 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=4938439b-633e-4c3b-aac9-32eff6749eec&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=4c07f9b2-e7f0-4910-a168-d7bf8bac7c90 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 254.9s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: af639bde-4e63-4d26-9274-87df5735aea3 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d639f3a4-e18f-4d6f-931a-fa1c516715dd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=af639bde-4e63-4d26-9274-87df5735aea3&request_guid=d639f3a4-e18f-4d6f-931a-fa1c516715dd HTTP/1.1" 200 2278 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8390a-0502-afee-1a4b-0303c5d73e97 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8390a-0502-afee-1a4b-0303c5d73e97 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8390a-0502-afee-1a4b-0303c5d73e97' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e7c7497d-3d4d-4dd5-afb6-98e13a0bcc86 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8390a-0502-afee-1a4b-0303c5d73e97?request_guid=e7c7497d-3d4d-4dd5-afb6-98e13a0bcc86 HTTP/1.1" 200 1853 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8390a-0502-afee-1a4b-0303c5d73e97' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6c7a262e-9979-4b3e-b87d-fea9a3cf5baf +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8390a-0502-afee-1a4b-0303c5d73e97?request_guid=6c7a262e-9979-4b3e-b87d-fea9a3cf5baf HTTP/1.1" 200 1853 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8390a-0502-afee-1a4b-0303c5d73e97'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 99da498e-1830-47c8-811b-e4f561846375 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8390a-0502-afee-1a4b-0303c5d73e97'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8390a-0502-afee-1a4b-0303c5d73e97'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8ddd36a2-f299-4f5a-a0bb-6a1a06895f74 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=99da498e-1830-47c8-811b-e4f561846375&request_guid=8ddd36a2-f299-4f5a-a0bb-6a1a06895f74 HTTP/1.1" 200 2275 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8390a-0502-b1d6-1a4b-0303c5d74a87 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8390a-0502-b1d6-1a4b-0303c5d74a87 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: e8ac41f7-6a0a-4d14-84d3-83ac165f7f2a +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4bc01f1c-d511-42f1-97f5-04c7fe03944d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e8ac41f7-6a0a-4d14-84d3-83ac165f7f2a&request_guid=4bc01f1c-d511-42f1-97f5-04c7fe03944d HTTP/1.1" 200 1804 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8390a-0502-ae87-1a4b-0303c5d772df +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8390a-0502-ae87-1a4b-0303c5d772df +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8390a-0502-ae87-1a4b-0303c5d772df' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f981e575-b86d-4c46-9770-e61ab6266ddf +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8390a-0502-ae87-1a4b-0303c5d772df?request_guid=f981e575-b86d-4c46-9770-e61ab6266ddf HTTP/1.1" 200 2176 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8390a-0502-ae87-1a4b-0303c5d772df' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 392838fe-9508-49ac-8989-bc9994be5a15 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8390a-0502-ae87-1a4b-0303c5d772df?request_guid=392838fe-9508-49ac-8989-bc9994be5a15 HTTP/1.1" 200 2176 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8390a-0502-ae87-1a4b-0303c5d772df'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 34519603-226c-493a-aa26-6ec46645c9e3 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8390a-0502-ae87-1a4b-0303c5d772df'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8390a-0502-ae87-1a4b-0303c5d772df'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: de67fe87-6423-4b61-b260-e13d434acc88 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=34519603-226c-493a-aa26-6ec46645c9e3&request_guid=de67fe87-6423-4b61-b260-e13d434acc88 HTTP/1.1" 200 1799 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8390a-0502-af26-1a4b-0303c5d753ff +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8390a-0502-af26-1a4b-0303c5d753ff +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: ac44a80b-1a5a-4b58-9de4-521d2cf8351b +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e0597e26-2c03-48c5-b942-4fdaf1d8239b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ac44a80b-1a5a-4b58-9de4-521d2cf8351b&request_guid=e0597e26-2c03-48c5-b942-4fdaf1d8239b HTTP/1.1" 200 2279 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8390a-0502-b1d6-1a4b-0303c5d74abb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8390a-0502-b1d6-1a4b-0303c5d74abb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8390a-0502-b1d6-1a4b-0303c5d74abb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4b9601b0-f470-45e1-9660-cb1ee96d75f1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8390a-0502-b1d6-1a4b-0303c5d74abb?request_guid=4b9601b0-f470-45e1-9660-cb1ee96d75f1 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8390a-0502-b1d6-1a4b-0303c5d74abb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f27df986-e91f-41b3-9c61-91cb491588f9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8390a-0502-b1d6-1a4b-0303c5d74abb?request_guid=f27df986-e91f-41b3-9c61-91cb491588f9 HTTP/1.1" 200 1684 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8390a-0502-b1d6-1a4b-0303c5d74abb'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 8255b92a-2365-423b-83b4-ef8481376aa5 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8390a-0502-b1d6-1a4b-0303c5d74abb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8390a-0502-b1d6-1a4b-0303c5d74abb'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f597d692-2836-4482-89f6-23c6bbc4ca37 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=8255b92a-2365-423b-83b4-ef8481376aa5&request_guid=f597d692-2836-4482-89f6-23c6bbc4ca37 HTTP/1.1" 200 2287 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8390a-0502-ae87-1a4b-0303c5d77353 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8390a-0502-ae87-1a4b-0303c5d77353 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 257.9s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=fac33387-b308-4847-90a4-28c85d0c5131 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 87a20ff1-9fb8-4e4e-a6cc-5cdb6ca1e8d8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=fac33387-b308-4847-90a4-28c85d0c5131&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=87a20ff1-9fb8-4e4e-a6cc-5cdb6ca1e8d8 HTTP/1.1" 200 1545 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 695d93a1-2c78-4dcd-b42f-82567a9f5b79 +DEBUG:snowflake.connector.cursor:running query [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4dd27b95-f294-48c2-91c3-6a5cc25fa8ce +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=695d93a1-2c78-4dcd-b42f-82567a9f5b79&request_guid=4dd27b95-f294-48c2-91c3-6a5cc25fa8ce HTTP/1.1" 200 4940 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8390a-0502-af26-1a4b-0303c5d7545f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8390a-0502-af26-1a4b-0303c5d7545f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=57 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8390a-0502-af26-1a4b-0303c5d7545f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d7e99d74-ca15-4688-a05a-0fa96e851283 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8390a-0502-af26-1a4b-0303c5d7545f?request_guid=d7e99d74-ca15-4688-a05a-0fa96e851283 HTTP/1.1" 200 1978 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8390a-0502-af26-1a4b-0303c5d7545f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8b4834cd-14ea-4732-84e5-cd194234ffb6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8390a-0502-af26-1a4b-0303c5d7545f?request_guid=8b4834cd-14ea-4732-84e5-cd194234ffb6 HTTP/1.1" 200 1977 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8390a-0502-af26-1a4b-0303c5d7545f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 3163fe4a-aa8f-4ccc-b880-1bf037aa1f41 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8390a-0502-af26-1a4b-0303c5d7545f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8390a-0502-af26-1a4b-0303c5d7545f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 64e03eea-f54b-4a70-9d55-8d90e3c901cd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3163fe4a-aa8f-4ccc-b880-1bf037aa1f41&request_guid=64e03eea-f54b-4a70-9d55-8d90e3c901cd HTTP/1.1" 200 4933 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8390a-0502-b1d6-1a4b-0303c5d74b37 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8390a-0502-b1d6-1a4b-0303c5d74b37 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=57 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:result batch 4 has id: data_0_0_3 +DEBUG:snowflake.connector.result_set:result batch 5 has id: data_0_0_4 +DEBUG:snowflake.connector.result_set:result batch 6 has id: data_0_0_5 +DEBUG:snowflake.connector.result_set:result batch 7 has id: data_0_0_6 +DEBUG:snowflake.connector.result_set:result batch 8 has id: data_0_1_0 +DEBUG:snowflake.connector.result_set:result batch 9 has id: data_0_1_1 +DEBUG:snowflake.connector.result_set:result batch 10 has id: data_0_1_2 +DEBUG:snowflake.connector.result_set:result batch 11 has id: data_0_1_3 +DEBUG:snowflake.connector.result_set:result batch 12 has id: data_0_1_4 +DEBUG:snowflake.connector.result_set:result batch 13 has id: data_0_1_5 +DEBUG:snowflake.connector.result_set:result batch 14 has id: data_0_1_6 +DEBUG:snowflake.connector.result_set:result batch 15 has id: data_0_2_0 +DEBUG:snowflake.connector.result_set:result batch 16 has id: data_0_2_1 +DEBUG:snowflake.connector.result_set:result batch 17 has id: data_0_2_2 +DEBUG:snowflake.connector.result_set:result batch 18 has id: data_0_2_3 +DEBUG:snowflake.connector.result_set:result batch 19 has id: data_0_2_4 +DEBUG:snowflake.connector.result_set:result batch 20 has id: data_0_2_5 +DEBUG:snowflake.connector.result_set:result batch 21 has id: data_0_2_6 +DEBUG:snowflake.connector.result_set:result batch 22 has id: data_0_3_0 +DEBUG:snowflake.connector.result_set:result batch 23 has id: data_0_3_1 +DEBUG:snowflake.connector.result_set:result batch 24 has id: data_0_3_2 +DEBUG:snowflake.connector.result_set:result batch 25 has id: data_0_3_3 +DEBUG:snowflake.connector.result_set:result batch 26 has id: data_0_3_4 +DEBUG:snowflake.connector.result_set:result batch 27 has id: data_0_3_5 +DEBUG:snowflake.connector.result_set:result batch 28 has id: data_0_3_6 +DEBUG:snowflake.connector.result_set:result batch 29 has id: data_0_4_0 +DEBUG:snowflake.connector.result_set:result batch 30 has id: data_0_4_1 +DEBUG:snowflake.connector.result_set:result batch 31 has id: data_0_4_2 +DEBUG:snowflake.connector.result_set:result batch 32 has id: data_0_4_3 +DEBUG:snowflake.connector.result_set:result batch 33 has id: data_0_4_4 +DEBUG:snowflake.connector.result_set:result batch 34 has id: data_0_4_5 +DEBUG:snowflake.connector.result_set:result batch 35 has id: data_0_4_6 +DEBUG:snowflake.connector.result_set:result batch 36 has id: data_0_4_7 +DEBUG:snowflake.connector.result_set:result batch 37 has id: data_0_5_0 +DEBUG:snowflake.connector.result_set:result batch 38 has id: data_0_5_1 +DEBUG:snowflake.connector.result_set:result batch 39 has id: data_0_5_2 +DEBUG:snowflake.connector.result_set:result batch 40 has id: data_0_5_3 +DEBUG:snowflake.connector.result_set:result batch 41 has id: data_0_5_4 +DEBUG:snowflake.connector.result_set:result batch 42 has id: data_0_5_5 +DEBUG:snowflake.connector.result_set:result batch 43 has id: data_0_5_6 +DEBUG:snowflake.connector.result_set:result batch 44 has id: data_0_6_0 +DEBUG:snowflake.connector.result_set:result batch 45 has id: data_0_6_1 +DEBUG:snowflake.connector.result_set:result batch 46 has id: data_0_6_2 +DEBUG:snowflake.connector.result_set:result batch 47 has id: data_0_6_3 +DEBUG:snowflake.connector.result_set:result batch 48 has id: data_0_6_4 +DEBUG:snowflake.connector.result_set:result batch 49 has id: data_0_6_5 +DEBUG:snowflake.connector.result_set:result batch 50 has id: data_0_6_6 +DEBUG:snowflake.connector.result_set:result batch 51 has id: data_0_7_0 +DEBUG:snowflake.connector.result_set:result batch 52 has id: data_0_7_1 +DEBUG:snowflake.connector.result_set:result batch 53 has id: data_0_7_2 +DEBUG:snowflake.connector.result_set:result batch 54 has id: data_0_7_3 +DEBUG:snowflake.connector.result_set:result batch 55 has id: data_0_7_4 +DEBUG:snowflake.connector.result_set:result batch 56 has id: data_0_7_5 +DEBUG:snowflake.connector.result_set:result batch 57 has id: data_0_7_6 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_3 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_3 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=ak39kCrUZEFmXnn%2FRvnh5oc40%2Bo%3D HTTP/1.1" 200 264297 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=rl3cTOcPjShkBvMb2lCVbGFUwG4%3D HTTP/1.1" 200 35090 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=1hwA6gZObm%2B8c%2FGetOpAygjLnCo%3D HTTP/1.1" 200 465916 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=C5Ophjf71spSFqb2JrcVL9VyKGo%3D HTTP/1.1" 200 133478 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_6 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=4t2fsx9grcmqHbvExSeY03bT1iU%3D HTTP/1.1" 200 964549 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=UfS5WT5L12x8qXtlx8HzvLWbc%2Fs%3D HTTP/1.1" 200 1747853 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 4 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_0_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=kNrajoVLuJR1HNqOUv%2BJVv3GHF8%3D HTTP/1.1" 200 264690 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=7YJ1u2veM8vb0s4syVgNdZQhF%2B8%3D HTTP/1.1" 200 35019 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 993 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 4 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 5 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1982 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=78j8syqK2Sj56Yev5%2FsOh0hZcaE%3D HTTP/1.1" 200 133377 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 5 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 6 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2529 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=k8j8EliKIpTptuR3zk2DqVwkZmQ%3D HTTP/1.1" 200 261719 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2546 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2535 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2545 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 7 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.result_set:user began consuming result batch 7 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_2 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1911 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 7 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 8 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 8 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 8 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 9 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 9 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 9 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 10 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 10 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_1_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_1_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=HxmHTxaSkl6rJVQv5uO%2BhLcvHOU%3D HTTP/1.1" 200 969217 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=mc0AiK0Tefg1HURqUP97WlGcVXE%3D HTTP/1.1" 200 466986 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 10 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 11 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=3igSBg%2FZdQz1hWox0tyGTubSNNA%3D HTTP/1.1" 200 1734762 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_0 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 11 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 988 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_1_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=iLq2wAa%2FcVrFvOJ%2FvIifdpXUK78%3D HTTP/1.1" 200 2186834 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 990 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 11 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 12 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_1 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=y6J8lVtNuEJ63MB68E2M6Bo64as%3D HTTP/1.1" 200 33636 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 12 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 989 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=3WCx%2BWqOrYxD93FjIm2%2FmGdbbFA%3D HTTP/1.1" 200 129595 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 12 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 13 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_2 with existing session +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 13 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2513 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2521 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=lMISfCqvMguKYP1%2FTyoecSrg%2BJk%3D HTTP/1.1" 200 256381 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2520 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 13 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 14 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_3 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_1_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 14 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2516 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=%2BbNUWsGSwOuf7vJuG3rjaA78vXw%3D HTTP/1.1" 200 462463 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2532 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2521 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2535 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2531 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 527 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 14 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 15 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 15 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 15 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 16 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 16 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 16 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 17 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 17 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_2_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_2_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=VL%2F5c8OxBjV7i5bgV7NFJn9qyNk%3D HTTP/1.1" 200 967630 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 17 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 18 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 18 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=UWf%2F1iLDbviFu%2ByYg9uGJ%2BXoiOs%3D HTTP/1.1" 200 1757664 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_2_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=oVbw6qwYcJnjeUbJdWm9puvkBlI%3D HTTP/1.1" 200 131960 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 18 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 19 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_1 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=mANJZoTCD2JPf0WK0ul%2FvC0T8Zg%3D HTTP/1.1" 200 34661 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 19 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=Dy9i86zgTPPTO0z9BubA4vw18g4%3D HTTP/1.1" 200 133017 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 19 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 20 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_2_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 20 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2523 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=dAOsBrCuYDlDtTyPL147O8EVEPI%3D HTTP/1.1" 200 262868 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2541 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2536 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2522 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 20 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 21 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 21 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 975 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_3 with existing session +DEBUG:snowflake.connector.result_set:user finished consuming result batch 21 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 22 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 22 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 22 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 23 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 23 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 249 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 23 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 24 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_3_6 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 24 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_3_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=S908cCxixccSwkNNl17HwcE0ePE%3D HTTP/1.1" 200 464439 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=MjQUkOiUsD6aU%2BDpNBI1KpecLBY%3D HTTP/1.1" 200 962759 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 24 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 25 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=zLkSMvCVzEdr3sA03ttDEzDWrq8%3D HTTP/1.1" 200 1740120 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_0 with existing session +DEBUG:snowflake.connector.result_set:user began consuming result batch 25 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 993 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_3_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=7b16feEnRlztv2EdB7lBa5wUFFQ%3D HTTP/1.1" 200 1208430 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 993 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=ovVz6Fp7Qqvj9mP7lHyqsoxMY1w%3D HTTP/1.1" 200 34475 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 25 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 26 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 26 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 994 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1986 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=N9JitPo4pAzdOK0ptAw47P3Rxxo%3D HTTP/1.1" 200 131285 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1987 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1971 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 26 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 27 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_2 with existing session +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_6 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_3_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 27 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2529 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=mtzrqWWlZfNq%2B2KQfCrHMdnJvT4%3D HTTP/1.1" 200 259963 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2531 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2532 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 27 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 28 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 28 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2517 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2539 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2526 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=S4L0LLXBsyOJyzoKJbTkatIOjCA%3D HTTP/1.1" 200 464061 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1125 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 28 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 29 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 29 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 29 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_4 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 30 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 30 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 249 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 30 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 31 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 31 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=nR%2BgnTozu2oBf2zzUdKQperA4uM%3D HTTP/1.1" 200 963245 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=Pp7pfO4srcBnruYNi4fycJdrZVg%3D HTTP/1.1" 200 1763257 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 31 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 32 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_set:user began consuming result batch 32 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_4_7 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_4_7 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=5AI1qIfDewNdu3S3ye%2FPCl3z3ho%3D HTTP/1.1" 200 3288578 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_4_7?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=3y0JUdZ4vPZDncAN0g4rmcfKlCA%3D HTTP/1.1" 200 1193681 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 32 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 33 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 33 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1982 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=NIS1z40%2FXIwfbOfnf9Kiv7Eqb7Q%3D HTTP/1.1" 200 34825 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1985 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1982 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 33 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 34 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_7 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_7 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 34 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2518 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=sQ3I%2BKL2fojnPOoDhMQYRr9Qqlo%3D HTTP/1.1" 200 132770 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2523 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2532 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2517 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 34 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 35 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 9 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_4_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 35 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 9 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 9, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2529 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=gF%2BDdfzgpgG1RMxaoM3Bd%2FA%2BLBM%3D HTTP/1.1" 200 261281 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2515 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2542 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2529 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2538 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 2524 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 8, rows in current batch: 2533 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 35 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 36 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 36 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2544 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2542 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=ylyLkXf1%2F9Xu8s8AnT0eSpbqEY8%3D HTTP/1.1" 200 463548 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 612 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 36 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 37 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 37 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 243 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 37 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 38 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_4 with existing session +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 38 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 38 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 39 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 39 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_5_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_5_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=cedFUkoGdAVkz34obA7QLQ0Nisc%3D HTTP/1.1" 200 962977 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 497 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 39 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=f5%2F9cDslyXmhk1Q5Qs1NX2AB06U%3D HTTP/1.1" 200 1755693 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 40 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 40 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 497 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_5_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=Pvipwihqi06ThmrqKoGJv2v7Nl8%3D HTTP/1.1" 200 150579 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 993 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 40 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 41 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_6 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_1 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 41 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=NFbhTo%2FXwPSLKhiauVOm%2B7Bm7oI%3D HTTP/1.1" 200 35016 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1981 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=4oo9jg8HkNtP6IKImS2lQJNTmqo%3D HTTP/1.1" 200 133248 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1984 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1980 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 41 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 42 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_5_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 42 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2523 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=MV1a9xuvTkPxXUFOVwq7aMlorJI%3D HTTP/1.1" 200 264485 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2543 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2539 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2526 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 42 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 43 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 43 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_3 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1089 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_2 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 43 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 44 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 44 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_set:user finished consuming result batch 44 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_4 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 45 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 45 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 45 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 46 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 46 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_6_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_6_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=yyL9aUM54DooHWNRioDuTRwt25w%3D HTTP/1.1" 200 468013 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 46 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=6eC1c1KhPViOH0Ra9xnO%2BB6VTSU%3D HTTP/1.1" 200 967057 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 47 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=QfiOXwYt5d944V0RbGJ7P0Yu7ec%3D HTTP/1.1" 200 1752141 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_set:user began consuming result batch 47 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_6_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=DMJ0bijf7dDBKIVWG9gWd%2FZQwtQ%3D HTTP/1.1" 200 2117103 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_0 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 991 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 47 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 48 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_4 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_set:user began consuming result batch 48 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_1 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=cudPp6U56YxdMv82RfY5%2FE69pzo%3D HTTP/1.1" 200 35021 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 991 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1979 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1980 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=XmJtNBgm9Ror%2FJx0gEB2az2cbAE%3D HTTP/1.1" 200 133249 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1978 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_0 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 48 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 49 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 4/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_2 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_1 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 49 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2524 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=QEOxjdbQ8i4mhhvBqtYtKl%2FTBIA%3D HTTP/1.1" 200 263313 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2528 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2542 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2541 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2524 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 49 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 50 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_3 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_3 with existing session +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_2 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 7 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_6_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 50 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 7 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 7, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2521 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_3?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=XPTDtsmMBYZyu14ej7KDok11tXY%3D HTTP/1.1" 200 465199 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2515 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2537 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_3 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2523 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2537 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2534 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 9 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 50 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 51 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 51 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_4 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_4 with existing session +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 242 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 51 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 52 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 52 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_5 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 249 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_5 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 248 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_4?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=9%2BB3sAWi2vY%2BvdixjiWiq%2FCO6WA%3D HTTP/1.1" 200 966941 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 52 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 53 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_set:user began consuming result batch 53 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_7_6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/4 active sessions +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 248 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_7_6 with existing session +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 248 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 495 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 496 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 53 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_5?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=xM4he4GemQYsvNCNPvTNKwnQIhI%3D HTTP/1.1" 200 1756606 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 54 +DEBUG:snowflake.connector.result_set:user began consuming result batch 54 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 496 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 990 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838c0-0502-ae87-1a4b-0303c5c2e017_0/main/data_0_7_6?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133570&Signature=KDYiUrn3sZXVE1HC5V4yJNUpYnA%3D HTTP/1.1" 200 238425 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 991 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_6 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_6 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 992 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 54 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 55 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_4 +DEBUG:snowflake.connector.result_set:user began consuming result batch 55 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 992 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 1980 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1982 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 1981 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 55 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 56 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/4 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 5 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_7_5 +DEBUG:snowflake.connector.result_set:user began consuming result batch 56 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 5 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 5, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 2520 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 2525 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 2540 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2534 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 2519 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 56 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 57 +DEBUG:snowflake.connector.result_set:user began consuming result batch 57 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1710 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 57 +DEBUG:snowflake.connector.connection:Rest object has been destroyed, cannot close session +DEBUG:snowflake.connector.connection:Rest object has been destroyed, cannot close session +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8d4e3bd7-82c4-4473-9434-9980d0a6991c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=8d4e3bd7-82c4-4473-9434-9980d0a6991c HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=a3355ff7-e992-46b9-9e4f-ff6e51eae04e +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 794355c0-f321-4687-b07e-cf3648501ea6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=a3355ff7-e992-46b9-9e4f-ff6e51eae04e&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=794355c0-f321-4687-b07e-cf3648501ea6 HTTP/1.1" 200 1545 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 949286bf-f752-475b-af7f-a3e0dd61d01c +DEBUG:snowflake.connector.cursor:running query [SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT EVENT_DTM,"header_change_mask","header_change_oper",ODS_EXP_ROW_DTM,EVENT...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: beaf8f57-9d23-486b-925f-71c631b13327 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=949286bf-f752-475b-af7f-a3e0dd61d01c&request_guid=beaf8f57-9d23-486b-925f-71c631b13327 HTTP/1.1" 200 2295 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8390c-0502-b1d6-1a4b-0303c5d7e93b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8390c-0502-b1d6-1a4b-0303c5d7e93b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8390c-0502-b1d6-1a4b-0303c5d7e93b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 872d49b8-c726-4d2e-98d3-90a16e956a2f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8390c-0502-b1d6-1a4b-0303c5d7e93b?request_guid=872d49b8-c726-4d2e-98d3-90a16e956a2f HTTP/1.1" 200 1964 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8390c-0502-b1d6-1a4b-0303c5d7e93b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 07278acc-9408-4668-8153-0da3a18c3c2d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8390c-0502-b1d6-1a4b-0303c5d7e93b?request_guid=07278acc-9408-4668-8153-0da3a18c3c2d HTTP/1.1" 200 1966 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8390c-0502-b1d6-1a4b-0303c5d7e93b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 4371a8a4-dcfb-4b26-8e5e-e283db57fa03 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8390c-0502-b1d6-1a4b-0303c5d7e93b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8390c-0502-b1d6-1a4b-0303c5d7e93b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1e52ef40-3194-4c06-bd10-9425cf410ea0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4371a8a4-dcfb-4b26-8e5e-e283db57fa03&request_guid=1e52ef40-3194-4c06-bd10-9425cf410ea0 HTTP/1.1" 200 2303 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8390c-0502-b1d6-1a4b-0303c5d7e957 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8390c-0502-b1d6-1a4b-0303c5d7e957 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +DEBUG:snowflake.connector.result_batch:chunk size=3 +INFO:snowflake.connector.cursor:Number of results in first chunk: 0 +DEBUG:snowflake.connector.result_set:result batch 1 has id: data_0_0_0 +DEBUG:snowflake.connector.result_set:result batch 2 has id: data_0_0_1 +DEBUG:snowflake.connector.result_set:result batch 3 has id: data_0_0_2 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_0 +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_0 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.result_set:queuing download of result batch id: data_0_0_2 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_0 with existing session +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/2 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_1 with existing session +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 1 +DEBUG:snowflake.connector.result_batch:started downloading result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 3/3 active sessions +DEBUG:snowflake.connector.result_batch:downloading result batch id: data_0_0_2 with existing session +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: sfc-va2-ds1-9-customer-stage.s3.amazonaws.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_0?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133707&Signature=Ub%2Bcqgs76AMoz%2BYGttECqlsMGeg%3D HTTP/1.1" 200 36830 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 2/3 active sessions +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.s3.amazonaws.com')]) +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_0 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.result_set:user began consuming result batch 1 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 246 +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.result_set:user finished consuming result batch 1 +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 2 +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_2?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133707&Signature=RVfts%2BBe9u4lAGhkDnn4KpOIJXU%3D HTTP/1.1" 200 39942 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 1/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_2 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://sfc-va2-ds1-9-customer-stage.s3.amazonaws.com:443 "GET /igp2-s-v2st3968/results/01a838a1-0502-af26-1a4b-0303c5bad13b_0/main/data_0_0_1?x-amz-server-side-encryption-customer-algorithm=AES256&response-content-encoding=gzip&AWSAccessKeyId=AKIASA37E7CV624T3GGN&Expires=1668133707&Signature=NgDhK05XQcXm%2BvI%2BN2aHUY67At8%3D HTTP/1.1" 200 137002 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_2 +DEBUG:snowflake.connector.network:Session status for SessionPool 'None', SessionPool 0/3 active sessions +DEBUG:snowflake.connector.result_batch:successfully downloaded result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_batch:started loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 4 +DEBUG:snowflake.connector.result_batch:finished loading result batch id: data_0_0_1 +DEBUG:snowflake.connector.result_set:user began consuming result batch 2 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 4 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 4, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 246 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 246 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 2 +DEBUG:snowflake.connector.result_set:user requesting to consume result batch 3 +DEBUG:snowflake.connector.result_set:user began consuming result batch 3 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 39, use_numpy: 0 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 282 +DEBUG:snowflake.connector.result_set:user finished consuming result batch 3 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 401.9s ago] ('minus_query', 1, 0) +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: adf3429b-32c6-4135-a602-35e33e4d0261 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=adf3429b-32c6-4135-a602-35e33e4d0261 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.telemetry:Sending 1 logs to telemetry. Data is {'logs': [{'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_imported_packages', 'value': "{'types', 'sql', 'queue', 'sqlite3', 'fractions', 'hashlib', 'uu', 'click', 'sys', 'csv', 'asn1crypto', 'stringprep', 'contextlib', 'cachelib', 'secrets', 'urllib3', 'hmac', 'copyreg', 'traceback', 'numpy', 'common', 'webbrowser', 'warnings', 'concurrent', 'encodings', 'builtins', 'fnmatch', 'calendar', 'weakref', 'pandas', 'os', 'pydevd_file_utils', 'netrc', 'configparser', 'sre_parse', 'opcode', 'importlib', 'abc', 'sqlalchemy', 'random', 'http', 'flask_migrate', 'xml', 'posixpath', 'platform', 'typing', 'code', 'pathlib', 'socket', 'pydevd', 'mako', 'pkg_resources', 'bisect', 'cryptography', 'numbers', 'oscrypto', 'select', 'site', 're', 'json', 'sre_compile', 'bz2', 'signal', 'mmap', 'overrides', 'xmlrpc', 'marshal', 'ntpath', 'flask', 'gc', 'collections', 'pydev_ipython', 'copy', 'jwt', 'urllib', 'zipimport', 'stat', 'math', 'asyncio', 'markupsafe', 'time', 'pydevconsole', 'imp', 'snowflake', 'dis', 'msvcrt', 'unicodedata', 'sysconfig', 'errno', 'uuid', 'gettext', 'gzip', 'flask_sqlalchemy', 'ipaddress', 'config', 'charset_normalizer', 'werkzeug', 'difflib', 'zlib', 'codecs', 'string', 'colorama', 'alembic', 'functools', 'greenlet', 'lzma', 'datetime', 'inspect', 'tokenize', 'argparse', 'idna', 'selectors', 'requests', 'threading', 'dataclasses', 'operator', 'pyexpat', 'tempfile', 'logging', 'html', 'certifi', 'cmath', 'reprlib', 'struct', 'base64', 'pydevd_tracing', 'jinja2', 'locale', 'socketserver', 'linecache', 'nturl2path', 'function', 'mimetypes', 'plistlib', 'shlex', 'itertools', 'keyword', 'binascii', 'pkgutil', 'getpass', 'pytz', 'flask_wtf', 'contextvars', 'cffi', 'shutil', 'enum', 'heapq', 'ssl', 'atexit', 'dateutil', 'fconfig', 'sre_constants', 'pycparser', 'ctypes', 'timeit', 'glob', 'io', 'OpenSSL', 'wtforms', 'zipfile', 'ast', 'flask_session', 'pydevd_plugins', 'codeop', 'subprocess', 'token', 'nt', 'debugpy', 'psycopg2', 'itsdangerous', 'pickle', 'decimal', 'pydoc', 'cython_runtime', 'quopri', 'winreg', 'email', 'textwrap', 'filelock', 'pprint', 'genericpath', 'Cryptodome', 'typing_extensions', 'six'}"}, 'timestamp': '1668111962746'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8390a-0502-afee-1a4b-0303c5d73e97', 'value': -1030}, 'timestamp': '1668111965010'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8390a-0502-b1d6-1a4b-0303c5d74a87', 'value': -1031}, 'timestamp': '1668111965393'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a8390a-0502-b1d6-1a4b-0303c5d74a87', 'value': 3}, 'timestamp': '1668111965396'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8390a-0502-ae87-1a4b-0303c5d772df', 'value': -1031}, 'timestamp': '1668111966196'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8390a-0502-af26-1a4b-0303c5d753ff', 'value': -1031}, 'timestamp': '1668111966627'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a8390a-0502-af26-1a4b-0303c5d753ff', 'value': 3}, 'timestamp': '1668111966630'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8390a-0502-b1d6-1a4b-0303c5d74abb', 'value': -1031}, 'timestamp': '1668111966742'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_first_result', 'query_id': '01a8390a-0502-ae87-1a4b-0303c5d77353', 'value': -1032}, 'timestamp': '1668111967208'}, {'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_time_consume_last_result', 'query_id': '01a8390a-0502-ae87-1a4b-0303c5d77353', 'value': 2}, 'timestamp': '1668111967210'}]}. +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d389b1df-b4af-47a9-94f3-4b760e750e02 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /telemetry/send?request_guid=d389b1df-b4af-47a9-94f3-4b760e750e02 HTTP/1.1" 200 86 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.telemetry:Successfully uploading metrics to telemetry. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 93933542-70dc-4365-9b6c-85f6fc484141 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=93933542-70dc-4365-9b6c-85f6fc484141 HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:snowflake.connector.connection:closed +DEBUG:snowflake.connector.telemetry:Closing telemetry client. +DEBUG:snowflake.connector.telemetry:Sending 1 logs to telemetry. Data is {'logs': [{'message': {'driver_type': 'PythonConnector', 'driver_version': '2.8.1', 'source': 'PythonConnector', 'type': 'client_imported_packages', 'value': "{'types', 'sql', 'queue', 'sqlite3', 'fractions', 'hashlib', 'uu', 'click', 'sys', 'csv', 'asn1crypto', 'stringprep', 'contextlib', 'cachelib', 'secrets', 'urllib3', 'hmac', 'copyreg', 'traceback', 'numpy', 'common', 'webbrowser', 'warnings', 'concurrent', 'encodings', 'builtins', 'fnmatch', 'calendar', 'weakref', 'pandas', 'os', 'pydevd_file_utils', 'netrc', 'configparser', 'sre_parse', 'opcode', 'importlib', 'abc', 'sqlalchemy', 'random', 'http', 'flask_migrate', 'xml', 'posixpath', 'platform', 'typing', 'code', 'pathlib', 'socket', 'pydevd', 'mako', 'pkg_resources', 'bisect', 'cryptography', 'numbers', 'oscrypto', 'select', 'site', 're', 'json', 'sre_compile', 'bz2', 'signal', 'mmap', 'overrides', 'xmlrpc', 'marshal', 'ntpath', 'flask', 'gc', 'collections', 'pydev_ipython', 'copy', 'jwt', 'urllib', 'zipimport', 'stat', 'math', 'asyncio', 'markupsafe', 'time', 'pydevconsole', 'imp', 'snowflake', 'dis', 'msvcrt', 'unicodedata', 'sysconfig', 'errno', 'uuid', 'gettext', 'gzip', 'flask_sqlalchemy', 'ipaddress', 'config', 'charset_normalizer', 'werkzeug', 'difflib', 'zlib', 'codecs', 'string', 'colorama', 'alembic', 'functools', 'greenlet', 'lzma', 'datetime', 'inspect', 'tokenize', 'argparse', 'idna', 'selectors', 'requests', 'threading', 'dataclasses', 'operator', 'pyexpat', 'tempfile', 'logging', 'html', 'certifi', 'cmath', 'reprlib', 'struct', 'base64', 'pydevd_tracing', 'jinja2', 'locale', 'socketserver', 'linecache', 'nturl2path', 'function', 'mimetypes', 'plistlib', 'shlex', 'itertools', 'keyword', 'binascii', 'pkgutil', 'getpass', 'pytz', 'flask_wtf', 'contextvars', 'cffi', 'shutil', 'enum', 'heapq', 'ssl', 'atexit', 'dateutil', 'fconfig', 'sre_constants', 'pycparser', 'ctypes', 'timeit', 'glob', 'io', 'OpenSSL', 'wtforms', 'zipfile', 'ast', 'flask_session', 'pydevd_plugins', 'codeop', 'subprocess', 'token', 'nt', 'debugpy', 'psycopg2', 'itsdangerous', 'pickle', 'decimal', 'pydoc', 'cython_runtime', 'quopri', 'winreg', 'email', 'textwrap', 'filelock', 'pprint', 'genericpath', 'Cryptodome', 'typing_extensions', 'six'}"}, 'timestamp': '1668111964286'}]}. +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 30d1ab70-47bb-4fc9-ac63-2feb2096b1b6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Resetting dropped connection: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /telemetry/send?request_guid=30d1ab70-47bb-4fc9-ac63-2feb2096b1b6 HTTP/1.1" 200 86 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.telemetry:Successfully uploading metrics to telemetry. +INFO:snowflake.connector.connection:No async queries seem to be running, deleting session +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 5, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 417675d0-ff84-4492-ad86-1e07ccdeedaa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session?delete=true&request_guid=417675d0-ff84-4492-ad86-1e07ccdeedaa HTTP/1.1" 200 76 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.connection:Session is closed +INFO:sqlalchemy.engine.Engine:ROLLBACK +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:32:52] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&submit=Submit HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:32:52] "GET /static/lib/owlcarousel/assets/owl.carousel.min.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:32:52] "GET /static/css/style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:32:52] "GET /static/css/21.b5c496e2.chunk.css HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:32:52] "GET /lib/easing/easing.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:32:52] "GET /lib/waypoints/waypoints.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:32:52] "GET /lib/counterup/counterup.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:32:52] "GET /lib/owlcarousel/owl.carousel.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:32:53] "GET /mail/jqBootstrapValidation.min.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:32:53] "GET /mail/contact.js HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:32:53] "GET /js/main.js HTTP/1.1" 404 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\main.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\main.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 10.67s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 10.67s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 10.68s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=68bacf87-7f6d-4426-9cd1-960c446c172e +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e25aa48d-b1d3-4fbc-8874-3d983332ba29 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1833988219968 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1833988219968 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1833988543040 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1833988543040 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1833988543040 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1833988543040 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1833988219968 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1833988219968 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=68bacf87-7f6d-4426-9cd1-960c446c172e&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=e25aa48d-b1d3-4fbc-8874-3d983332ba29 HTTP/1.1" 200 1546 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=57df5ac9-1878-49f0-b166-53b20f55bd26 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 199ded8c-9319-4658-805a-5655cdc9d2b2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=57df5ac9-1878-49f0-b166-53b20f55bd26&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=199ded8c-9319-4658-805a-5655cdc9d2b2 HTTP/1.1" 200 1546 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:36:22] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:36:22] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:36:23] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:36:24] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:36:24] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\common\\connecter.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\common\\connecter.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 5.339s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 5.343s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 5.351s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=c3b73705-3cd5-4333-a604-184f4b7e3f26 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e94af36c-b375-4729-89c3-416dc81cdb71 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2471780033600 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2471780033600 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2471780323904 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2471780323904 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2471780033600 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2471780033600 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=c3b73705-3cd5-4333-a604-184f4b7e3f26&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=e94af36c-b375-4729-89c3-416dc81cdb71 HTTP/1.1" 200 1549 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=6a1b61b5-0a92-4966-a081-8ef9771bfe14 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a23a9409-0735-4748-80f0-1079277e0ee6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=6a1b61b5-0a92-4966-a081-8ef9771bfe14&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=a23a9409-0735-4748-80f0-1079277e0ee6 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00190s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 0a121588-c58d-4ae5-b6e7-fe223bb33b4f +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5ba929a8-9bef-46a9-96e0-ef025650e71d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0a121588-c58d-4ae5-b6e7-fe223bb33b4f&request_guid=5ba929a8-9bef-46a9-96e0-ef025650e71d HTTP/1.1" 200 2276 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83915-0502-af26-1a4b-0303c5da647f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83915-0502-af26-1a4b-0303c5da647f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83915-0502-af26-1a4b-0303c5da647f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e409a493-8fca-48e9-b135-e6cab4e08cde +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83915-0502-af26-1a4b-0303c5da647f?request_guid=e409a493-8fca-48e9-b135-e6cab4e08cde HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83915-0502-af26-1a4b-0303c5da647f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: df9740a1-9877-4570-be33-2bccc48f3025 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83915-0502-af26-1a4b-0303c5da647f?request_guid=df9740a1-9877-4570-be33-2bccc48f3025 HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83915-0502-af26-1a4b-0303c5da647f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: c962041d-5a8b-4118-aab3-e69c77f21bc2 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83915-0502-af26-1a4b-0303c5da647f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83915-0502-af26-1a4b-0303c5da647f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 674ddbd8-5935-4499-8961-b6de37a4b15e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c962041d-5a8b-4118-aab3-e69c77f21bc2&request_guid=674ddbd8-5935-4499-8961-b6de37a4b15e HTTP/1.1" 200 2274 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83915-0502-b1d6-1a4b-0303c5da55ff +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83915-0502-b1d6-1a4b-0303c5da55ff +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 6254b124-a699-47e6-bfb1-befa40ebe94a +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0b545ef5-3b67-451f-8ebb-d52246157656 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6254b124-a699-47e6-bfb1-befa40ebe94a&request_guid=0b545ef5-3b67-451f-8ebb-d52246157656 HTTP/1.1" 200 1796 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83915-0502-af26-1a4b-0303c5da64bb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83915-0502-af26-1a4b-0303c5da64bb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83915-0502-af26-1a4b-0303c5da64bb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e07f8ed1-1619-4a74-a55f-cbe7e94f426e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83915-0502-af26-1a4b-0303c5da64bb?request_guid=e07f8ed1-1619-4a74-a55f-cbe7e94f426e HTTP/1.1" 200 2173 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83915-0502-af26-1a4b-0303c5da64bb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 71825225-1bc3-4cbd-852d-9b03950d34d9 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83915-0502-af26-1a4b-0303c5da64bb?request_guid=71825225-1bc3-4cbd-852d-9b03950d34d9 HTTP/1.1" 200 2174 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83915-0502-af26-1a4b-0303c5da64bb'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 773f34f9-80a6-4c48-bf39-1d6ef06de1c7 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83915-0502-af26-1a4b-0303c5da64bb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83915-0502-af26-1a4b-0303c5da64bb'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a6ec1bf4-1a2c-440a-a76c-f153caa8d02b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=773f34f9-80a6-4c48-bf39-1d6ef06de1c7&request_guid=a6ec1bf4-1a2c-440a-a76c-f153caa8d02b HTTP/1.1" 200 1798 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83915-0502-af26-1a4b-0303c5da64f7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83915-0502-af26-1a4b-0303c5da64f7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 552331b5-86f7-4acb-b3c2-9304d2916013 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 57d5efb5-d843-4cbb-a38c-76412c9c9ff3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=552331b5-86f7-4acb-b3c2-9304d2916013&request_guid=57d5efb5-d843-4cbb-a38c-76412c9c9ff3 HTTP/1.1" 200 2281 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83915-0502-b1d6-1a4b-0303c5da5637 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83915-0502-b1d6-1a4b-0303c5da5637 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83915-0502-b1d6-1a4b-0303c5da5637' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2d56c80e-4d75-447c-b0b1-75d6793bc912 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83915-0502-b1d6-1a4b-0303c5da5637?request_guid=2d56c80e-4d75-447c-b0b1-75d6793bc912 HTTP/1.1" 200 1677 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83915-0502-b1d6-1a4b-0303c5da5637' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0cdf783a-8bea-4146-b793-224d01d49461 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83915-0502-b1d6-1a4b-0303c5da5637?request_guid=0cdf783a-8bea-4146-b793-224d01d49461 HTTP/1.1" 200 1677 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83915-0502-b1d6-1a4b-0303c5da5637'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: e9bc1359-ba45-4747-a261-3d0f9488b0a5 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83915-0502-b1d6-1a4b-0303c5da5637'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83915-0502-b1d6-1a4b-0303c5da5637'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ce3c398e-60ae-4e24-96aa-1f2df1d23b97 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e9bc1359-ba45-4747-a261-3d0f9488b0a5&request_guid=ce3c398e-60ae-4e24-96aa-1f2df1d23b97 HTTP/1.1" 200 2284 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83915-0502-af26-1a4b-0303c5da651b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83915-0502-af26-1a4b-0303c5da651b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:37:37] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:37:38] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:37:38] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:37:38] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 15.66s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 15.67s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 15.67s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=482fbe8f-8016-400d-b1b7-f7406f72b895 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: df4aebf5-1a0d-4396-a701-7f807935d639 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1390775772224 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1390775772224 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1390776046144 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1390776046144 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1390776046144 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1390776046144 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1390775772224 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1390775772224 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=482fbe8f-8016-400d-b1b7-f7406f72b895&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=df4aebf5-1a0d-4396-a701-7f807935d639 HTTP/1.1" 200 1542 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=581b6ee2-4205-4649-947b-5515c336dbe5 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 40872b2e-e557-445f-aaba-c082e40b9f0b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=581b6ee2-4205-4649-947b-5515c336dbe5&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=40872b2e-e557-445f-aaba-c082e40b9f0b HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00160s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: b68b2348-e649-4df4-8ae9-06ec223dabc0 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2009516b-74d4-4cba-a78a-387791a74691 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b68b2348-e649-4df4-8ae9-06ec223dabc0&request_guid=2009516b-74d4-4cba-a78a-387791a74691 HTTP/1.1" 200 2272 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8391b-0502-b1d6-1a4b-0303c5dba753 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8391b-0502-b1d6-1a4b-0303c5dba753 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8391b-0502-b1d6-1a4b-0303c5dba753' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e5869083-4229-4109-84f6-2c21528a3e81 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8391b-0502-b1d6-1a4b-0303c5dba753?request_guid=e5869083-4229-4109-84f6-2c21528a3e81 HTTP/1.1" 200 1852 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8391b-0502-b1d6-1a4b-0303c5dba753' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9a7e525a-6a23-4ef0-8c2d-99c45a8a74b5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8391b-0502-b1d6-1a4b-0303c5dba753?request_guid=9a7e525a-6a23-4ef0-8c2d-99c45a8a74b5 HTTP/1.1" 200 1852 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8391b-0502-b1d6-1a4b-0303c5dba753'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: b96f976d-a5c8-44eb-856e-2e62eb7be5f5 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8391b-0502-b1d6-1a4b-0303c5dba753'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8391b-0502-b1d6-1a4b-0303c5dba753'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7ca335c5-acd9-4b2b-b566-8ea7a8530f0c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b96f976d-a5c8-44eb-856e-2e62eb7be5f5&request_guid=7ca335c5-acd9-4b2b-b566-8ea7a8530f0c HTTP/1.1" 200 2275 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8391b-0502-afee-1a4b-0303c5dbb70b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8391b-0502-afee-1a4b-0303c5dbb70b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: c402e1a1-23c7-4655-a9f4-a7bb05758a94 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e4ad0a9d-f65e-4ee2-8afc-4e09ae4e8553 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c402e1a1-23c7-4655-a9f4-a7bb05758a94&request_guid=e4ad0a9d-f65e-4ee2-8afc-4e09ae4e8553 HTTP/1.1" 200 1800 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8391b-0502-afee-1a4b-0303c5dbb70f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8391b-0502-afee-1a4b-0303c5dbb70f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8391b-0502-afee-1a4b-0303c5dbb70f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 402d6c1a-5cf4-4f8c-b43e-3524ea2303aa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8391b-0502-afee-1a4b-0303c5dbb70f?request_guid=402d6c1a-5cf4-4f8c-b43e-3524ea2303aa HTTP/1.1" 200 2177 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8391b-0502-afee-1a4b-0303c5dbb70f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: adc9e48d-0814-40a3-a44f-7abdfe8a3c91 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8391b-0502-afee-1a4b-0303c5dbb70f?request_guid=adc9e48d-0814-40a3-a44f-7abdfe8a3c91 HTTP/1.1" 200 2177 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8391b-0502-afee-1a4b-0303c5dbb70f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 124e83bc-ac05-424e-9d8c-dbe9823e65ce +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8391b-0502-afee-1a4b-0303c5dbb70f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8391b-0502-afee-1a4b-0303c5dbb70f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5060520a-091f-4bd4-8c79-2dd8b82f218f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=124e83bc-ac05-424e-9d8c-dbe9823e65ce&request_guid=5060520a-091f-4bd4-8c79-2dd8b82f218f HTTP/1.1" 200 1797 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8391b-0502-b0de-1a4b-0303c5db8d43 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8391b-0502-b0de-1a4b-0303c5db8d43 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 9950e64c-2594-4b2c-b2e6-badb67042d3f +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bccfb589-29ab-47b8-a435-fd7a4e4c9af5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=9950e64c-2594-4b2c-b2e6-badb67042d3f&request_guid=bccfb589-29ab-47b8-a435-fd7a4e4c9af5 HTTP/1.1" 200 2279 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8391b-0502-b0de-1a4b-0303c5db8d4f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8391b-0502-b0de-1a4b-0303c5db8d4f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8391b-0502-b0de-1a4b-0303c5db8d4f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5b202175-5ff8-4000-9132-cf51486c6425 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8391b-0502-b0de-1a4b-0303c5db8d4f?request_guid=5b202175-5ff8-4000-9132-cf51486c6425 HTTP/1.1" 200 1679 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8391b-0502-b0de-1a4b-0303c5db8d4f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 38640966-315f-4c38-a9fe-7f1e897c2f28 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8391b-0502-b0de-1a4b-0303c5db8d4f?request_guid=38640966-315f-4c38-a9fe-7f1e897c2f28 HTTP/1.1" 200 1679 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8391b-0502-b0de-1a4b-0303c5db8d4f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: de3ada87-9e29-4500-b7e4-7582fc69fe7a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8391b-0502-b0de-1a4b-0303c5db8d4f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8391b-0502-b0de-1a4b-0303c5db8d4f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c1359951-e7c2-4e97-9aa2-17b8f0d27117 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=de3ada87-9e29-4500-b7e4-7582fc69fe7a&request_guid=c1359951-e7c2-4e97-9aa2-17b8f0d27117 HTTP/1.1" 200 2285 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8391b-0502-ae87-1a4b-0303c5db7e63 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8391b-0502-ae87-1a4b-0303c5db7e63 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:43:04] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:43:04] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:43:04] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:43:05] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 82.19s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 82.2s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 82.2s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=469fbb9f-a331-4295-bace-0b2fcf8421c5 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f3e2f80c-2733-4431-b449-b00f02c53919 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=469fbb9f-a331-4295-bace-0b2fcf8421c5&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=f3e2f80c-2733-4431-b449-b00f02c53919 HTTP/1.1" 200 1547 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=7cddeb49-d972-432b-932d-784db845e939 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 046f4537-0699-4c67-921a-1ceb8171f7c7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=7cddeb49-d972-432b-932d-784db845e939&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=046f4537-0699-4c67-921a-1ceb8171f7c7 HTTP/1.1" 200 1547 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 62.12s ago] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 5f26108e-3073-45ec-b316-8e0cd35778ec +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 36d2aadc-6022-42dc-9961-d95bcf89533d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5f26108e-3073-45ec-b316-8e0cd35778ec&request_guid=36d2aadc-6022-42dc-9961-d95bcf89533d HTTP/1.1" 200 2273 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8391c-0502-b1d6-1a4b-0303c5dbf60f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8391c-0502-b1d6-1a4b-0303c5dbf60f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8391c-0502-b1d6-1a4b-0303c5dbf60f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7fee1901-ba71-45e0-935c-2a1dbfd9a972 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8391c-0502-b1d6-1a4b-0303c5dbf60f?request_guid=7fee1901-ba71-45e0-935c-2a1dbfd9a972 HTTP/1.1" 200 1849 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8391c-0502-b1d6-1a4b-0303c5dbf60f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 35f6af42-5cd7-46ea-a6b5-e1b4cd406318 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8391c-0502-b1d6-1a4b-0303c5dbf60f?request_guid=35f6af42-5cd7-46ea-a6b5-e1b4cd406318 HTTP/1.1" 200 1849 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8391c-0502-b1d6-1a4b-0303c5dbf60f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 489e04cc-8061-4d49-8d64-c6f86621e6b4 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8391c-0502-b1d6-1a4b-0303c5dbf60f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8391c-0502-b1d6-1a4b-0303c5dbf60f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b71f390d-3ea7-4b57-b4a0-e95502b9f39c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=489e04cc-8061-4d49-8d64-c6f86621e6b4&request_guid=b71f390d-3ea7-4b57-b4a0-e95502b9f39c HTTP/1.1" 200 2273 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8391c-0502-b1d6-1a4b-0303c5dbf647 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8391c-0502-b1d6-1a4b-0303c5dbf647 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 37fd6e11-9811-4d39-8192-5e7ce492697b +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f439bbc3-2a80-4e81-9670-f417c4fc4c84 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=37fd6e11-9811-4d39-8192-5e7ce492697b&request_guid=f439bbc3-2a80-4e81-9670-f417c4fc4c84 HTTP/1.1" 200 1796 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8391c-0502-b0de-1a4b-0303c5dbdcf3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8391c-0502-b0de-1a4b-0303c5dbdcf3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8391c-0502-b0de-1a4b-0303c5dbdcf3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9c93fdb2-55dd-4848-8392-7d62eac34fd0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8391c-0502-b0de-1a4b-0303c5dbdcf3?request_guid=9c93fdb2-55dd-4848-8392-7d62eac34fd0 HTTP/1.1" 200 2171 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8391c-0502-b0de-1a4b-0303c5dbdcf3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6ab16321-e10e-4bef-b955-e998493b6514 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8391c-0502-b0de-1a4b-0303c5dbdcf3?request_guid=6ab16321-e10e-4bef-b955-e998493b6514 HTTP/1.1" 200 2171 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8391c-0502-b0de-1a4b-0303c5dbdcf3'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: d6abd4cb-203f-40f1-9ada-d05f2525aa87 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8391c-0502-b0de-1a4b-0303c5dbdcf3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8391c-0502-b0de-1a4b-0303c5dbdcf3'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8c9a76d3-e9d8-4710-a35f-1b7591819785 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d6abd4cb-203f-40f1-9ada-d05f2525aa87&request_guid=8c9a76d3-e9d8-4710-a35f-1b7591819785 HTTP/1.1" 200 1799 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8391c-0502-af26-1a4b-0303c5dbe74b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8391c-0502-af26-1a4b-0303c5dbe74b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 31e3c7a0-be6f-4b69-9088-d09ed57e475d +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9f666fbf-1b61-4d33-a263-c391871e50f8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=31e3c7a0-be6f-4b69-9088-d09ed57e475d&request_guid=9f666fbf-1b61-4d33-a263-c391871e50f8 HTTP/1.1" 200 2280 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8391c-0502-b0de-1a4b-0303c5dbdd2f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8391c-0502-b0de-1a4b-0303c5dbdd2f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8391c-0502-b0de-1a4b-0303c5dbdd2f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0ea7ceb3-7634-4a10-83fd-f425c0ac2c03 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8391c-0502-b0de-1a4b-0303c5dbdd2f?request_guid=0ea7ceb3-7634-4a10-83fd-f425c0ac2c03 HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8391c-0502-b0de-1a4b-0303c5dbdd2f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e65f2014-c35e-43f4-95cf-6b5c26cc22f8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8391c-0502-b0de-1a4b-0303c5dbdd2f?request_guid=e65f2014-c35e-43f4-95cf-6b5c26cc22f8 HTTP/1.1" 200 1679 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8391c-0502-b0de-1a4b-0303c5dbdd2f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: db869c78-6c3a-4b1a-8b69-cfb7a6860c06 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8391c-0502-b0de-1a4b-0303c5dbdd2f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8391c-0502-b0de-1a4b-0303c5dbdd2f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c6747ecd-0b70-4b8a-8029-936f9325e258 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=db869c78-6c3a-4b1a-8b69-cfb7a6860c06&request_guid=c6747ecd-0b70-4b8a-8029-936f9325e258 HTTP/1.1" 200 2281 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8391c-0502-b1d6-1a4b-0303c5dbf6bf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8391c-0502-b1d6-1a4b-0303c5dbf6bf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2018s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2231s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2509s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=5b07b641-b146-4211-b112-9a4699fec4c1 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6020e22c-09c5-48ac-b109-915286ba0f77 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1882790832272 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1882790832272 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1882791122576 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1882791122576 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1882791122576 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1882791122576 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1882790832272 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1882790832272 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=5b07b641-b146-4211-b112-9a4699fec4c1&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=6020e22c-09c5-48ac-b109-915286ba0f77 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=285e50b5-1da0-46c7-abcc-e2c4b30d18e3 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e93de5a4-0136-4ac5-a1fe-3ed82b05b6a7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=285e50b5-1da0-46c7-abcc-e2c4b30d18e3&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=e93de5a4-0136-4ac5-a1fe-3ed82b05b6a7 HTTP/1.1" 200 1540 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00166s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 553c8019-f1b5-4fff-9277-dac0fd720455 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: efcc92f1-2cf4-4bbc-801a-32215067dbc4 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=553c8019-f1b5-4fff-9277-dac0fd720455&request_guid=efcc92f1-2cf4-4bbc-801a-32215067dbc4 HTTP/1.1" 200 2274 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83922-0502-b1d6-1a4b-0303c5ddd06b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83922-0502-b1d6-1a4b-0303c5ddd06b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83922-0502-b1d6-1a4b-0303c5ddd06b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6fff5034-9da3-4147-bd41-ccb89100c65e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83922-0502-b1d6-1a4b-0303c5ddd06b?request_guid=6fff5034-9da3-4147-bd41-ccb89100c65e HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83922-0502-b1d6-1a4b-0303c5ddd06b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: add2c2e0-a128-4156-89cb-c419bc2c08b3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83922-0502-b1d6-1a4b-0303c5ddd06b?request_guid=add2c2e0-a128-4156-89cb-c419bc2c08b3 HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83922-0502-b1d6-1a4b-0303c5ddd06b'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 5bf5a662-1968-44b2-9f37-92ed55956c89 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83922-0502-b1d6-1a4b-0303c5ddd06b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83922-0502-b1d6-1a4b-0303c5ddd06b'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f166351e-ee48-4c71-98c2-84b66ee9d358 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5bf5a662-1968-44b2-9f37-92ed55956c89&request_guid=f166351e-ee48-4c71-98c2-84b66ee9d358 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83922-0502-afee-1a4b-0303c5ddc347 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83922-0502-afee-1a4b-0303c5ddc347 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 4ebcc6f7-4d5c-4659-a620-c104fa35f506 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d5941cb9-3080-40aa-a4de-5e73eba46c8f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4ebcc6f7-4d5c-4659-a620-c104fa35f506&request_guid=d5941cb9-3080-40aa-a4de-5e73eba46c8f HTTP/1.1" 200 1796 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83922-0502-b0de-1a4b-0303c5ddb37f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83922-0502-b0de-1a4b-0303c5ddb37f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83922-0502-b0de-1a4b-0303c5ddb37f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4e4fc4ce-a5c5-46f7-b2ce-6e4b0a8fca8d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83922-0502-b0de-1a4b-0303c5ddb37f?request_guid=4e4fc4ce-a5c5-46f7-b2ce-6e4b0a8fca8d HTTP/1.1" 200 2166 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83922-0502-b0de-1a4b-0303c5ddb37f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0f16bf60-e026-4c7a-95f0-5a59d58ddbea +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83922-0502-b0de-1a4b-0303c5ddb37f?request_guid=0f16bf60-e026-4c7a-95f0-5a59d58ddbea HTTP/1.1" 200 2166 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83922-0502-b0de-1a4b-0303c5ddb37f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: d4623864-bd15-44d4-a22b-f676876a0a30 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83922-0502-b0de-1a4b-0303c5ddb37f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83922-0502-b0de-1a4b-0303c5ddb37f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: aa611305-5dee-4d8c-ac04-f882bf0f5475 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d4623864-bd15-44d4-a22b-f676876a0a30&request_guid=aa611305-5dee-4d8c-ac04-f882bf0f5475 HTTP/1.1" 200 1797 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83922-0502-b0de-1a4b-0303c5ddb3d3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83922-0502-b0de-1a4b-0303c5ddb3d3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 9f10ea59-0b33-4baa-8bc7-ead0f51f972b +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ea2fd4b4-abbd-4438-9ea5-bbc97df25593 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=9f10ea59-0b33-4baa-8bc7-ead0f51f972b&request_guid=ea2fd4b4-abbd-4438-9ea5-bbc97df25593 HTTP/1.1" 200 2289 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83922-0502-ae87-1a4b-0303c5dda6b3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83922-0502-ae87-1a4b-0303c5dda6b3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83922-0502-ae87-1a4b-0303c5dda6b3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 88ef48ad-a2ee-4644-82e0-ff14f25ceed6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83922-0502-ae87-1a4b-0303c5dda6b3?request_guid=88ef48ad-a2ee-4644-82e0-ff14f25ceed6 HTTP/1.1" 200 1685 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83922-0502-ae87-1a4b-0303c5dda6b3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 28de10ab-dbcb-4880-a60d-93e2ce5bc5f5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83922-0502-ae87-1a4b-0303c5dda6b3?request_guid=28de10ab-dbcb-4880-a60d-93e2ce5bc5f5 HTTP/1.1" 200 1685 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83922-0502-ae87-1a4b-0303c5dda6b3'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: e5cca949-9224-4e62-9779-7223f3f6abf9 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83922-0502-ae87-1a4b-0303c5dda6b3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83922-0502-ae87-1a4b-0303c5dda6b3'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: aaefeb7b-d0dc-419b-930f-637c3b72d426 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e5cca949-9224-4e62-9779-7223f3f6abf9&request_guid=aaefeb7b-d0dc-419b-930f-637c3b72d426 HTTP/1.1" 200 2287 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83922-0502-af26-1a4b-0303c5dd9cff +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83922-0502-af26-1a4b-0303c5dd9cff +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:51:49] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:51:50] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:51:50] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:51:50] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 15:51:50] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 39.53s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 39.54s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 39.55s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=1ca5e177-609f-41a5-9d02-231c327c8c0a +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a779d35a-22f7-4dc1-98d5-f1e383657738 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2173908362304 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2173908362304 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2173908652608 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2173908652608 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2173908652608 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2173908652608 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2173908362304 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2173908362304 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=1ca5e177-609f-41a5-9d02-231c327c8c0a&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=a779d35a-22f7-4dc1-98d5-f1e383657738 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=b2213ac7-cba5-4f6a-b408-21a2a872822a +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 966a35f5-38f0-4309-ae3b-bd31282d4e79 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=b2213ac7-cba5-4f6a-b408-21a2a872822a&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=966a35f5-38f0-4309-ae3b-bd31282d4e79 HTTP/1.1" 200 1542 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00169s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: f4ca6f78-f35d-4559-bb66-2a1a48216699 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8865ff89-9412-49ac-afc5-a4cf50ecf0a5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f4ca6f78-f35d-4559-bb66-2a1a48216699&request_guid=8865ff89-9412-49ac-afc5-a4cf50ecf0a5 HTTP/1.1" 200 2280 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83924-0502-afee-1a4b-0303c5de5457 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83924-0502-afee-1a4b-0303c5de5457 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83924-0502-afee-1a4b-0303c5de5457' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c320915d-32f7-4bd5-9e03-2a2f3628a874 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83924-0502-afee-1a4b-0303c5de5457?request_guid=c320915d-32f7-4bd5-9e03-2a2f3628a874 HTTP/1.1" 200 1855 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83924-0502-afee-1a4b-0303c5de5457' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bd1517c0-29b5-4d7d-8853-94b9d4dbb266 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83924-0502-afee-1a4b-0303c5de5457?request_guid=bd1517c0-29b5-4d7d-8853-94b9d4dbb266 HTTP/1.1" 200 1856 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83924-0502-afee-1a4b-0303c5de5457'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 12b09a45-20f7-4474-8032-a1f2c16efb3a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83924-0502-afee-1a4b-0303c5de5457'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83924-0502-afee-1a4b-0303c5de5457'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 75a1fe1b-f402-4b13-8928-d7cbc9b4b117 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=12b09a45-20f7-4474-8032-a1f2c16efb3a&request_guid=75a1fe1b-f402-4b13-8928-d7cbc9b4b117 HTTP/1.1" 200 2280 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83924-0502-ae87-1a4b-0303c5de455b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83924-0502-ae87-1a4b-0303c5de455b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 4b99c926-8fcb-48d9-a027-fd0651354347 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2e6afd16-71d3-427d-b892-689e6d91e867 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=4b99c926-8fcb-48d9-a027-fd0651354347&request_guid=2e6afd16-71d3-427d-b892-689e6d91e867 HTTP/1.1" 200 1796 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83924-0502-b0de-1a4b-0303c5de63bb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83924-0502-b0de-1a4b-0303c5de63bb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83924-0502-b0de-1a4b-0303c5de63bb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e2aff950-3114-4d2b-913f-a6051edcda3e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83924-0502-b0de-1a4b-0303c5de63bb?request_guid=e2aff950-3114-4d2b-913f-a6051edcda3e HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83924-0502-b0de-1a4b-0303c5de63bb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a43012ee-4644-40f8-8077-72d28eff1262 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83924-0502-b0de-1a4b-0303c5de63bb?request_guid=a43012ee-4644-40f8-8077-72d28eff1262 HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83924-0502-b0de-1a4b-0303c5de63bb'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: be4e7273-3085-4f65-a55f-d4874f97a4c8 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83924-0502-b0de-1a4b-0303c5de63bb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83924-0502-b0de-1a4b-0303c5de63bb'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 72374b59-f23c-4883-bd97-f0d6c9a948be +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=be4e7273-3085-4f65-a55f-d4874f97a4c8&request_guid=72374b59-f23c-4883-bd97-f0d6c9a948be HTTP/1.1" 200 1802 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83924-0502-afee-1a4b-0303c5de54d3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83924-0502-afee-1a4b-0303c5de54d3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: db650905-e0a6-4496-a0d6-99dbf00163ca +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f819b1aa-15f6-4e25-a516-e6ad2cc278bc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=db650905-e0a6-4496-a0d6-99dbf00163ca&request_guid=f819b1aa-15f6-4e25-a516-e6ad2cc278bc HTTP/1.1" 200 2282 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83924-0502-b0de-1a4b-0303c5de6417 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83924-0502-b0de-1a4b-0303c5de6417 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83924-0502-b0de-1a4b-0303c5de6417' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 88d36676-cead-4354-bc60-11c19c29f110 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83924-0502-b0de-1a4b-0303c5de6417?request_guid=88d36676-cead-4354-bc60-11c19c29f110 HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83924-0502-b0de-1a4b-0303c5de6417' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b33c5478-8aa1-4e61-b65d-5f20c0efcde6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83924-0502-b0de-1a4b-0303c5de6417?request_guid=b33c5478-8aa1-4e61-b65d-5f20c0efcde6 HTTP/1.1" 200 1680 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83924-0502-b0de-1a4b-0303c5de6417'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 1d1fe184-5a1e-4268-8e48-a6d1ef3b55fb +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83924-0502-b0de-1a4b-0303c5de6417'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83924-0502-b0de-1a4b-0303c5de6417'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 738e5445-297a-4f5a-b319-8a919817fd7b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1d1fe184-5a1e-4268-8e48-a6d1ef3b55fb&request_guid=738e5445-297a-4f5a-b319-8a919817fd7b HTTP/1.1" 200 2284 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83924-0502-afee-1a4b-0303c5de54ef +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83924-0502-afee-1a4b-0303c5de54ef +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.1689s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.203s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2143s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=519347fe-7394-419f-9372-0d4b2cb2b1b9 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b7e67812-9a5a-499e-9ca9-fb5dc3ec6a9f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2192184109200 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2192184109200 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2192184415888 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2192184415888 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2192184415888 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2192184415888 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2192184109200 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2192184109200 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=519347fe-7394-419f-9372-0d4b2cb2b1b9&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=b7e67812-9a5a-499e-9ca9-fb5dc3ec6a9f HTTP/1.1" 200 1546 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=2a289696-9b80-445b-b35b-102cd9c8a694 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7a6bcdf1-8659-45fc-9c5d-51e074736a36 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=2a289696-9b80-445b-b35b-102cd9c8a694&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=7a6bcdf1-8659-45fc-9c5d-51e074736a36 HTTP/1.1" 200 1546 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00160s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 9f819e49-b29a-43e6-868d-928e02322430 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f2fc2c55-9366-465f-a398-aaa4e0f537f3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=9f819e49-b29a-43e6-868d-928e02322430&request_guid=f2fc2c55-9366-465f-a398-aaa4e0f537f3 HTTP/1.1" 200 2274 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83926-0502-af26-1a4b-0303c5dedb0f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83926-0502-af26-1a4b-0303c5dedb0f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83926-0502-af26-1a4b-0303c5dedb0f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bde8c17a-c2b8-4875-b28b-219789e02935 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83926-0502-af26-1a4b-0303c5dedb0f?request_guid=bde8c17a-c2b8-4875-b28b-219789e02935 HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83926-0502-af26-1a4b-0303c5dedb0f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e0e8bc23-9ba7-4ce3-aca4-7abdfcbd5deb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83926-0502-af26-1a4b-0303c5dedb0f?request_guid=e0e8bc23-9ba7-4ce3-aca4-7abdfcbd5deb HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83926-0502-af26-1a4b-0303c5dedb0f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 2431e94b-bd27-4e83-bed6-06303ea8a94e +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83926-0502-af26-1a4b-0303c5dedb0f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83926-0502-af26-1a4b-0303c5dedb0f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 89520d85-e84c-41b4-9ec3-101488ca8278 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2431e94b-bd27-4e83-bed6-06303ea8a94e&request_guid=89520d85-e84c-41b4-9ec3-101488ca8278 HTTP/1.1" 200 2277 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83926-0502-ae87-1a4b-0303c5debc73 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83926-0502-ae87-1a4b-0303c5debc73 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: de509735-ef22-4382-809a-170222716df8 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 30fa795e-15dd-414b-883f-18bccc5be49f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=de509735-ef22-4382-809a-170222716df8&request_guid=30fa795e-15dd-414b-883f-18bccc5be49f HTTP/1.1" 200 1800 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83926-0502-afee-1a4b-0303c5dee31f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83926-0502-afee-1a4b-0303c5dee31f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83926-0502-afee-1a4b-0303c5dee31f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2a806f6c-ec29-4057-a670-dcd88c23c6d3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83926-0502-afee-1a4b-0303c5dee31f?request_guid=2a806f6c-ec29-4057-a670-dcd88c23c6d3 HTTP/1.1" 200 2173 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83926-0502-afee-1a4b-0303c5dee31f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d9fc0327-2a6b-42ed-a47b-02d6d0e6186e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83926-0502-afee-1a4b-0303c5dee31f?request_guid=d9fc0327-2a6b-42ed-a47b-02d6d0e6186e HTTP/1.1" 200 2173 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83926-0502-afee-1a4b-0303c5dee31f'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 70986042-1c45-4656-8944-dc0837834218 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83926-0502-afee-1a4b-0303c5dee31f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83926-0502-afee-1a4b-0303c5dee31f'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2aa9bd49-fb1d-4de0-a96c-94b3a3307c88 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=70986042-1c45-4656-8944-dc0837834218&request_guid=2aa9bd49-fb1d-4de0-a96c-94b3a3307c88 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83926-0502-ae87-1a4b-0303c5debceb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83926-0502-ae87-1a4b-0303c5debceb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: c128c622-2270-40fb-b51f-55b60e8547bd +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b4736853-01b3-4c87-813d-a2f0c05f418a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c128c622-2270-40fb-b51f-55b60e8547bd&request_guid=b4736853-01b3-4c87-813d-a2f0c05f418a HTTP/1.1" 200 2281 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83926-0502-b1d6-1a4b-0303c5decf57 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83926-0502-b1d6-1a4b-0303c5decf57 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83926-0502-b1d6-1a4b-0303c5decf57' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ba0ef2be-b58e-45cc-a946-92c4bf6d1c05 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83926-0502-b1d6-1a4b-0303c5decf57?request_guid=ba0ef2be-b58e-45cc-a946-92c4bf6d1c05 HTTP/1.1" 200 1680 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83926-0502-b1d6-1a4b-0303c5decf57' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: be988c39-9f6a-4e0b-b84d-78b18ebc1167 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83926-0502-b1d6-1a4b-0303c5decf57?request_guid=be988c39-9f6a-4e0b-b84d-78b18ebc1167 HTTP/1.1" 200 1680 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83926-0502-b1d6-1a4b-0303c5decf57'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 20c7899d-15c6-439b-a334-5e661c60953f +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83926-0502-b1d6-1a4b-0303c5decf57'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83926-0502-b1d6-1a4b-0303c5decf57'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 945ef404-829d-465e-8a13-4aacf29cf374 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=20c7899d-15c6-439b-a334-5e661c60953f&request_guid=945ef404-829d-465e-8a13-4aacf29cf374 HTTP/1.1" 200 2282 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83926-0502-af26-1a4b-0303c5dedbcf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83926-0502-af26-1a4b-0303c5dedbcf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.187s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2084s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2647s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=6b86fe5a-6516-46db-806d-893ef05dee9f +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d97282f8-f207-43a9-91ea-3969bb14c0ec +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1477321943184 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1477321943184 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1477322233488 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1477322233488 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1477322233488 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1477322233488 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1477321943184 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1477321943184 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=6b86fe5a-6516-46db-806d-893ef05dee9f&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=d97282f8-f207-43a9-91ea-3969bb14c0ec HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=c47e8f23-a5ea-4f1a-8b56-8342edb4379a +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 45ab79f1-dc8d-4c33-b7fb-7cc40f27c53d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=c47e8f23-a5ea-4f1a-8b56-8342edb4379a&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=45ab79f1-dc8d-4c33-b7fb-7cc40f27c53d HTTP/1.1" 200 1542 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00162s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 760c2162-7ec6-4696-b40a-33930a4d7887 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 182886f4-09f5-40c9-945b-ec3158600840 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=760c2162-7ec6-4696-b40a-33930a4d7887&request_guid=182886f4-09f5-40c9-945b-ec3158600840 HTTP/1.1" 200 2272 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8392b-0502-b1d6-1a4b-0303c5dffe9f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8392b-0502-b1d6-1a4b-0303c5dffe9f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8392b-0502-b1d6-1a4b-0303c5dffe9f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a64fed53-97e6-45f9-92e8-f4d301dc3e76 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8392b-0502-b1d6-1a4b-0303c5dffe9f?request_guid=a64fed53-97e6-45f9-92e8-f4d301dc3e76 HTTP/1.1" 200 1846 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8392b-0502-b1d6-1a4b-0303c5dffe9f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 19c1ad15-532f-4388-a070-741dfacbe643 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8392b-0502-b1d6-1a4b-0303c5dffe9f?request_guid=19c1ad15-532f-4388-a070-741dfacbe643 HTTP/1.1" 200 1846 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8392b-0502-b1d6-1a4b-0303c5dffe9f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 06a70230-1766-4c93-ab94-50b4b88d435d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8392b-0502-b1d6-1a4b-0303c5dffe9f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8392b-0502-b1d6-1a4b-0303c5dffe9f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 12e11f0b-0b34-4818-a4b6-b5db6672d3c2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=06a70230-1766-4c93-ab94-50b4b88d435d&request_guid=12e11f0b-0b34-4818-a4b6-b5db6672d3c2 HTTP/1.1" 200 2272 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8392b-0502-b1d6-1a4b-0303c5dffeb3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8392b-0502-b1d6-1a4b-0303c5dffeb3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 1fe8396b-4812-4995-bf01-0850d2e1a65a +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9491500b-1f68-4d62-af66-ab3a79ce9ea5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1fe8396b-4812-4995-bf01-0850d2e1a65a&request_guid=9491500b-1f68-4d62-af66-ab3a79ce9ea5 HTTP/1.1" 200 1795 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8392b-0502-b1d6-1a4b-0303c5dffebb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8392b-0502-b1d6-1a4b-0303c5dffebb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8392b-0502-b1d6-1a4b-0303c5dffebb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 615f3bf1-300c-4e7e-ba98-2670ac36a9b3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8392b-0502-b1d6-1a4b-0303c5dffebb?request_guid=615f3bf1-300c-4e7e-ba98-2670ac36a9b3 HTTP/1.1" 200 2168 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8392b-0502-b1d6-1a4b-0303c5dffebb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 874056f9-2755-47f7-a4cb-455184c3b444 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8392b-0502-b1d6-1a4b-0303c5dffebb?request_guid=874056f9-2755-47f7-a4cb-455184c3b444 HTTP/1.1" 200 2168 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8392b-0502-b1d6-1a4b-0303c5dffebb'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 0fcbb4c6-9a08-4e06-905f-663a84e7b0f7 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8392b-0502-b1d6-1a4b-0303c5dffebb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8392b-0502-b1d6-1a4b-0303c5dffebb'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f9363ecb-67b8-400d-b483-48f7fb405ec3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0fcbb4c6-9a08-4e06-905f-663a84e7b0f7&request_guid=f9363ecb-67b8-400d-b483-48f7fb405ec3 HTTP/1.1" 200 1795 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8392b-0502-b1d6-1a4b-0303c5dffec3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8392b-0502-b1d6-1a4b-0303c5dffec3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: dd316175-23f3-426d-97f1-26522d280ff2 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e67f075a-8265-4c38-8b70-ab351a409e59 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=dd316175-23f3-426d-97f1-26522d280ff2&request_guid=e67f075a-8265-4c38-8b70-ab351a409e59 HTTP/1.1" 200 2285 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8392b-0502-afee-1a4b-0303c5e02653 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8392b-0502-afee-1a4b-0303c5e02653 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8392b-0502-afee-1a4b-0303c5e02653' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 41c7a5f7-42b9-45a9-b397-396f762a13c3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8392b-0502-afee-1a4b-0303c5e02653?request_guid=41c7a5f7-42b9-45a9-b397-396f762a13c3 HTTP/1.1" 200 1677 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8392b-0502-afee-1a4b-0303c5e02653' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: caf7c08a-dd6c-41ad-be86-0e75fb0dca23 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8392b-0502-afee-1a4b-0303c5e02653?request_guid=caf7c08a-dd6c-41ad-be86-0e75fb0dca23 HTTP/1.1" 200 1679 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8392b-0502-afee-1a4b-0303c5e02653'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: be171799-bcfb-437f-88b3-c4efccf612f3 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8392b-0502-afee-1a4b-0303c5e02653'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8392b-0502-afee-1a4b-0303c5e02653'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0fab0b7c-a2a8-4d99-81b6-1daa4841ec5f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=be171799-bcfb-437f-88b3-c4efccf612f3&request_guid=0fab0b7c-a2a8-4d99-81b6-1daa4841ec5f HTTP/1.1" 200 2284 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8392c-0502-af26-1a4b-0303c5e030cf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8392c-0502-af26-1a4b-0303c5e030cf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.1977s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2185s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2708s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=de20d01d-f658-46b1-a01b-3d00ab86002f +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 189acd20-3d22-453f-b424-e7b5d2450721 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2051267438736 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2051267438736 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2051267712656 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2051267712656 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2051267712656 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2051267712656 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2051267438736 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2051267438736 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=de20d01d-f658-46b1-a01b-3d00ab86002f&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=189acd20-3d22-453f-b424-e7b5d2450721 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=b21f47e2-b9b0-48b9-a0d1-1677a46d7143 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f944df54-b686-4169-972f-f2d467ebc2fd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=b21f47e2-b9b0-48b9-a0d1-1677a46d7143&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=f944df54-b686-4169-972f-f2d467ebc2fd HTTP/1.1" 200 1549 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00214s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 7fdf0151-5923-4e16-b23c-478d605e8479 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2b5851cc-2d65-411d-bc4b-c501c9f042bb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7fdf0151-5923-4e16-b23c-478d605e8479&request_guid=2b5851cc-2d65-411d-bc4b-c501c9f042bb HTTP/1.1" 200 2277 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8392e-0502-ae87-1a4b-0303c5e0bbcb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8392e-0502-ae87-1a4b-0303c5e0bbcb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8392e-0502-ae87-1a4b-0303c5e0bbcb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2dd1b318-6c77-4632-852a-23df45c18880 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8392e-0502-ae87-1a4b-0303c5e0bbcb?request_guid=2dd1b318-6c77-4632-852a-23df45c18880 HTTP/1.1" 200 1852 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8392e-0502-ae87-1a4b-0303c5e0bbcb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b42e4475-f607-4644-8e85-0c2d125cd9e7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8392e-0502-ae87-1a4b-0303c5e0bbcb?request_guid=b42e4475-f607-4644-8e85-0c2d125cd9e7 HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8392e-0502-ae87-1a4b-0303c5e0bbcb'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 5872ec0f-8284-4d24-bfbe-35eddf09cffa +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8392e-0502-ae87-1a4b-0303c5e0bbcb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8392e-0502-ae87-1a4b-0303c5e0bbcb'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c04dd750-0372-440e-b7d1-71a9b2e40938 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5872ec0f-8284-4d24-bfbe-35eddf09cffa&request_guid=c04dd750-0372-440e-b7d1-71a9b2e40938 HTTP/1.1" 200 2274 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8392e-0502-b1d6-1a4b-0303c5e0af9b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8392e-0502-b1d6-1a4b-0303c5e0af9b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 336db576-773e-432e-9576-db869d18bd3f +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 97c6ae8b-d7ee-4458-8598-943804415aea +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=336db576-773e-432e-9576-db869d18bd3f&request_guid=97c6ae8b-d7ee-4458-8598-943804415aea HTTP/1.1" 200 1801 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8392e-0502-afee-1a4b-0303c5e0caa7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8392e-0502-afee-1a4b-0303c5e0caa7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8392e-0502-afee-1a4b-0303c5e0caa7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 53435da4-fd4f-4006-bfde-dcce146f8185 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8392e-0502-afee-1a4b-0303c5e0caa7?request_guid=53435da4-fd4f-4006-bfde-dcce146f8185 HTTP/1.1" 200 2174 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8392e-0502-afee-1a4b-0303c5e0caa7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7a1bc240-2aaa-4c2b-a46a-c87a1359f470 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8392e-0502-afee-1a4b-0303c5e0caa7?request_guid=7a1bc240-2aaa-4c2b-a46a-c87a1359f470 HTTP/1.1" 200 2173 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8392e-0502-afee-1a4b-0303c5e0caa7'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: b922b113-b033-4b35-8981-a2ac64fca865 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8392e-0502-afee-1a4b-0303c5e0caa7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8392e-0502-afee-1a4b-0303c5e0caa7'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 07603318-4f21-461a-ad82-8144bffe3c28 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b922b113-b033-4b35-8981-a2ac64fca865&request_guid=07603318-4f21-461a-ad82-8144bffe3c28 HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8392e-0502-b1d6-1a4b-0303c5e0f007 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8392e-0502-b1d6-1a4b-0303c5e0f007 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: cd74f11c-e5b5-449c-88ea-95776a9e88de +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 624e2e65-7b80-40a7-9bf0-89a8bf072d77 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cd74f11c-e5b5-449c-88ea-95776a9e88de&request_guid=624e2e65-7b80-40a7-9bf0-89a8bf072d77 HTTP/1.1" 200 2281 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8392e-0502-b0de-1a4b-0303c5e0e5bf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8392e-0502-b0de-1a4b-0303c5e0e5bf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8392e-0502-b0de-1a4b-0303c5e0e5bf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 56f8fb37-bccb-4a50-be31-a53a5e82985f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8392e-0502-b0de-1a4b-0303c5e0e5bf?request_guid=56f8fb37-bccb-4a50-be31-a53a5e82985f HTTP/1.1" 200 1682 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8392e-0502-b0de-1a4b-0303c5e0e5bf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 87df1341-1a94-4c99-8d03-1241c8858e13 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8392e-0502-b0de-1a4b-0303c5e0e5bf?request_guid=87df1341-1a94-4c99-8d03-1241c8858e13 HTTP/1.1" 200 1682 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8392e-0502-b0de-1a4b-0303c5e0e5bf'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 311ab078-2d8a-4426-85dd-45192c08b24d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8392e-0502-b0de-1a4b-0303c5e0e5bf'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8392e-0502-b0de-1a4b-0303c5e0e5bf'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9fa3d270-0d2a-45ca-8c3c-703a708f5af6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=311ab078-2d8a-4426-85dd-45192c08b24d&request_guid=9fa3d270-0d2a-45ca-8c3c-703a708f5af6 HTTP/1.1" 200 2285 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8392e-0502-afee-1a4b-0303c5e0cb47 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8392e-0502-afee-1a4b-0303c5e0cb47 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2244s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2287s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.235s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=178379b6-17f0-4f9c-9d88-c44a43226227 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4035b168-f482-432f-8f9c-05b50253c4b6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2375373120576 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2375373120576 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2375373410880 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2375373410880 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2375373410880 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2375373410880 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2375373120576 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2375373120576 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=178379b6-17f0-4f9c-9d88-c44a43226227&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=4035b168-f482-432f-8f9c-05b50253c4b6 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=429e4f47-9c03-4b68-b484-03d668f99dba +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a0df8702-7d34-4183-9de7-91a32700b398 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=429e4f47-9c03-4b68-b484-03d668f99dba&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=a0df8702-7d34-4183-9de7-91a32700b398 HTTP/1.1" 200 1546 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00213s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: c4085188-764d-490c-a1d8-f6f4a924d97b +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 26f2251e-820f-4b01-9705-7a5f1ae32ddf +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c4085188-764d-490c-a1d8-f6f4a924d97b&request_guid=26f2251e-820f-4b01-9705-7a5f1ae32ddf HTTP/1.1" 200 2273 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83930-0502-b1d6-1a4b-0303c5e14947 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83930-0502-b1d6-1a4b-0303c5e14947 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83930-0502-b1d6-1a4b-0303c5e14947' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f1580d8f-b6b0-49e1-8c73-f5532043a120 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83930-0502-b1d6-1a4b-0303c5e14947?request_guid=f1580d8f-b6b0-49e1-8c73-f5532043a120 HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83930-0502-b1d6-1a4b-0303c5e14947' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1f7c3f8e-d1c8-4de8-9c5a-9d26024044f7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83930-0502-b1d6-1a4b-0303c5e14947?request_guid=1f7c3f8e-d1c8-4de8-9c5a-9d26024044f7 HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83930-0502-b1d6-1a4b-0303c5e14947'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 61353830-0ac4-40ed-8c9d-167860c24464 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83930-0502-b1d6-1a4b-0303c5e14947'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83930-0502-b1d6-1a4b-0303c5e14947'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d787214f-4878-4e61-9a74-a880772324dd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=61353830-0ac4-40ed-8c9d-167860c24464&request_guid=d787214f-4878-4e61-9a74-a880772324dd HTTP/1.1" 200 2276 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83930-0502-afee-1a4b-0303c5e1561b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83930-0502-afee-1a4b-0303c5e1561b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 2ded0b9c-3da6-45a6-894b-deabbb3982da +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 427e01fe-6ac0-49c0-84f1-a533577214f7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=2ded0b9c-3da6-45a6-894b-deabbb3982da&request_guid=427e01fe-6ac0-49c0-84f1-a533577214f7 HTTP/1.1" 200 1801 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83930-0502-ae87-1a4b-0303c5e16397 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83930-0502-ae87-1a4b-0303c5e16397 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83930-0502-ae87-1a4b-0303c5e16397' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 28c69ee6-18df-422b-8021-8aeeef313d10 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83930-0502-ae87-1a4b-0303c5e16397?request_guid=28c69ee6-18df-422b-8021-8aeeef313d10 HTTP/1.1" 200 2164 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83930-0502-ae87-1a4b-0303c5e16397' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4d4f4268-99e5-4f2d-be31-9c13377a430d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83930-0502-ae87-1a4b-0303c5e16397?request_guid=4d4f4268-99e5-4f2d-be31-9c13377a430d HTTP/1.1" 200 2165 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83930-0502-ae87-1a4b-0303c5e16397'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: a2d26d59-9002-4d5b-b733-3d70cc8607bc +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83930-0502-ae87-1a4b-0303c5e16397'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83930-0502-ae87-1a4b-0303c5e16397'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 784bcaf2-07b7-4de8-821f-8f8b2685a730 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a2d26d59-9002-4d5b-b733-3d70cc8607bc&request_guid=784bcaf2-07b7-4de8-821f-8f8b2685a730 HTTP/1.1" 200 1800 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83930-0502-ae87-1a4b-0303c5e163af +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83930-0502-ae87-1a4b-0303c5e163af +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 8372b8a8-54b2-4ee6-9f44-289b40d16cc2 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: bd0c812b-ec9f-441f-864a-01f21ad32dd7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=8372b8a8-54b2-4ee6-9f44-289b40d16cc2&request_guid=bd0c812b-ec9f-441f-864a-01f21ad32dd7 HTTP/1.1" 200 2282 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83930-0502-b1d6-1a4b-0303c5e14997 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83930-0502-b1d6-1a4b-0303c5e14997 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83930-0502-b1d6-1a4b-0303c5e14997' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f80be61a-3409-44a3-9972-de04cac6ee17 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83930-0502-b1d6-1a4b-0303c5e14997?request_guid=f80be61a-3409-44a3-9972-de04cac6ee17 HTTP/1.1" 200 1679 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83930-0502-b1d6-1a4b-0303c5e14997' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 97afc2ba-8157-4c15-98be-94f293fe8191 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83930-0502-b1d6-1a4b-0303c5e14997?request_guid=97afc2ba-8157-4c15-98be-94f293fe8191 HTTP/1.1" 200 1680 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83930-0502-b1d6-1a4b-0303c5e14997'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 20c6f09b-fc85-4bf1-a60f-531342fd3e71 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83930-0502-b1d6-1a4b-0303c5e14997'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83930-0502-b1d6-1a4b-0303c5e14997'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4b83cb16-389d-455d-bc63-de69a0f96be8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=20c6f09b-fc85-4bf1-a60f-531342fd3e71&request_guid=4b83cb16-389d-455d-bc63-de69a0f96be8 HTTP/1.1" 200 2280 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83930-0502-b0de-1a4b-0303c5e13d8f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83930-0502-b0de-1a4b-0303c5e13d8f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 14.07s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 14.08s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 14.08s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=c70e615c-f57f-4bb6-9da8-a18faef1caf5 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 29dd0088-47ee-435a-9697-a3203163d22d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2650408805680 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2650408805680 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2650409112416 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2650409112416 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2650409112416 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2650409112416 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2650408805680 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2650408805680 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=c70e615c-f57f-4bb6-9da8-a18faef1caf5&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=29dd0088-47ee-435a-9697-a3203163d22d HTTP/1.1" 200 1545 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=5f70e832-e530-4869-b2f4-e246fd06bce6 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5e9f23a1-2196-4b06-a738-a2aba40ab04b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=5f70e832-e530-4869-b2f4-e246fd06bce6&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=5e9f23a1-2196-4b06-a738-a2aba40ab04b HTTP/1.1" 200 1545 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00177s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 9ca642d3-ff03-428a-b20a-fa4b88778750 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1c390cf8-2e12-4cee-b0d2-298fd4b366ab +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=9ca642d3-ff03-428a-b20a-fa4b88778750&request_guid=1c390cf8-2e12-4cee-b0d2-298fd4b366ab HTTP/1.1" 200 2276 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8393d-0502-b159-1a4b-0303c5e4d383 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8393d-0502-b159-1a4b-0303c5e4d383 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8393d-0502-b159-1a4b-0303c5e4d383' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f751155a-50d7-4c38-8183-75c77611307a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8393d-0502-b159-1a4b-0303c5e4d383?request_guid=f751155a-50d7-4c38-8183-75c77611307a HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8393d-0502-b159-1a4b-0303c5e4d383' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e04a9eda-6ffb-4ee9-81db-89e7819ddee1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8393d-0502-b159-1a4b-0303c5e4d383?request_guid=e04a9eda-6ffb-4ee9-81db-89e7819ddee1 HTTP/1.1" 200 1850 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8393d-0502-b159-1a4b-0303c5e4d383'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: ba36b8cd-57b8-42c8-b28c-533283ea5c61 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8393d-0502-b159-1a4b-0303c5e4d383'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8393d-0502-b159-1a4b-0303c5e4d383'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 08773de6-7c37-4085-8c78-6f92d766b784 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ba36b8cd-57b8-42c8-b28c-533283ea5c61&request_guid=08773de6-7c37-4085-8c78-6f92d766b784 HTTP/1.1" 200 2276 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8393d-0502-afee-1a4b-0303c5e4e0eb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8393d-0502-afee-1a4b-0303c5e4e0eb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 03414d5c-cabc-4bba-afa6-996a540b6f51 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 59332018-a9ea-4a3a-b5b9-e2a2b8785d71 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=03414d5c-cabc-4bba-afa6-996a540b6f51&request_guid=59332018-a9ea-4a3a-b5b9-e2a2b8785d71 HTTP/1.1" 200 1793 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8393d-0502-b1d6-1a4b-0303c5e4ade3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8393d-0502-b1d6-1a4b-0303c5e4ade3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8393d-0502-b1d6-1a4b-0303c5e4ade3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7aa98d52-0e10-4c1b-9cee-fe1eb0553fdc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8393d-0502-b1d6-1a4b-0303c5e4ade3?request_guid=7aa98d52-0e10-4c1b-9cee-fe1eb0553fdc HTTP/1.1" 200 2166 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8393d-0502-b1d6-1a4b-0303c5e4ade3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c3274eeb-33db-4e74-9ed2-a02edc83ddd3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8393d-0502-b1d6-1a4b-0303c5e4ade3?request_guid=c3274eeb-33db-4e74-9ed2-a02edc83ddd3 HTTP/1.1" 200 2166 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8393d-0502-b1d6-1a4b-0303c5e4ade3'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: d7fe0076-a11f-474d-bab2-cf946fba0950 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8393d-0502-b1d6-1a4b-0303c5e4ade3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8393d-0502-b1d6-1a4b-0303c5e4ade3'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 88d0303b-b487-493f-89dd-0dfc7d6fe0a0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d7fe0076-a11f-474d-bab2-cf946fba0950&request_guid=88d0303b-b487-493f-89dd-0dfc7d6fe0a0 HTTP/1.1" 200 1800 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8393d-0502-b159-1a4b-0303c5e4d3c3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8393d-0502-b159-1a4b-0303c5e4d3c3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 515b340d-e00f-4bc2-b809-f417e8ea422e +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 30fa34ff-8ea5-4f28-a9d0-988487ce4ecc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=515b340d-e00f-4bc2-b809-f417e8ea422e&request_guid=30fa34ff-8ea5-4f28-a9d0-988487ce4ecc HTTP/1.1" 200 2286 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8393d-0502-b159-1a4b-0303c5e4d3c7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8393d-0502-b159-1a4b-0303c5e4d3c7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8393d-0502-b159-1a4b-0303c5e4d3c7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 28695073-d3ec-4d74-8a8a-559d2b33f6db +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8393d-0502-b159-1a4b-0303c5e4d3c7?request_guid=28695073-d3ec-4d74-8a8a-559d2b33f6db HTTP/1.1" 200 1677 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8393d-0502-b159-1a4b-0303c5e4d3c7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9a209d46-0db8-464a-a738-db81ddc16f30 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8393d-0502-b159-1a4b-0303c5e4d3c7?request_guid=9a209d46-0db8-464a-a738-db81ddc16f30 HTTP/1.1" 200 1679 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8393d-0502-b159-1a4b-0303c5e4d3c7'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: d449d8eb-6dbf-4424-8993-11fc5bd5923d +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8393d-0502-b159-1a4b-0303c5e4d3c7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8393d-0502-b159-1a4b-0303c5e4d3c7'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7948fa54-f1a2-4cd8-9a88-939508492e51 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d449d8eb-6dbf-4424-8993-11fc5bd5923d&request_guid=7948fa54-f1a2-4cd8-9a88-939508492e51 HTTP/1.1" 200 2285 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8393d-0502-b159-1a4b-0303c5e4d3d7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8393d-0502-b159-1a4b-0303c5e4d3d7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.1935s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2125s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2175s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=4a501bee-2d29-4a80-b34f-c04ae10e57fb +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1a2cbc44-b257-4ae2-9548-0086f409d657 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1799195666576 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1799195666576 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1799195940496 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1799195940496 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1799195940496 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1799195940496 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1799195666576 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1799195666576 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=4a501bee-2d29-4a80-b34f-c04ae10e57fb&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=1a2cbc44-b257-4ae2-9548-0086f409d657 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=2ff08d86-be8d-48d7-bbee-29a848a11e06 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 196ff7f8-9320-40e9-ab3c-597cf34c44d8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=2ff08d86-be8d-48d7-bbee-29a848a11e06&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=196ff7f8-9320-40e9-ab3c-597cf34c44d8 HTTP/1.1" 200 1553 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00237s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 579109e3-3a5c-497f-81ce-33116306d764 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: eac568c9-aef5-4e99-92b4-a98764f79b40 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=579109e3-3a5c-497f-81ce-33116306d764&request_guid=eac568c9-aef5-4e99-92b4-a98764f79b40 HTTP/1.1" 200 2275 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8393e-0502-b159-1a4b-0303c5e53357 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8393e-0502-b159-1a4b-0303c5e53357 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8393e-0502-b159-1a4b-0303c5e53357' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 92c2adb8-474b-4383-82b0-873ae205e90f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8393e-0502-b159-1a4b-0303c5e53357?request_guid=92c2adb8-474b-4383-82b0-873ae205e90f HTTP/1.1" 200 1852 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8393e-0502-b159-1a4b-0303c5e53357' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fd2f0318-42c5-4aae-b90c-1de4bf55111a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8393e-0502-b159-1a4b-0303c5e53357?request_guid=fd2f0318-42c5-4aae-b90c-1de4bf55111a HTTP/1.1" 200 1852 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8393e-0502-b159-1a4b-0303c5e53357'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: b8e066d0-a2cb-45db-85ab-010f33c43636 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8393e-0502-b159-1a4b-0303c5e53357'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8393e-0502-b159-1a4b-0303c5e53357'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c035549a-9bea-4dd4-9197-9246b11cca93 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b8e066d0-a2cb-45db-85ab-010f33c43636&request_guid=c035549a-9bea-4dd4-9197-9246b11cca93 HTTP/1.1" 200 2273 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8393e-0502-b1d6-1a4b-0303c5e50d1b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8393e-0502-b1d6-1a4b-0303c5e50d1b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: ac19fb1f-3da0-4839-b923-5398e5a947d7 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8a66bc40-eaa1-4207-8320-c81d683d5b1d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ac19fb1f-3da0-4839-b923-5398e5a947d7&request_guid=8a66bc40-eaa1-4207-8320-c81d683d5b1d HTTP/1.1" 200 1800 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8393e-0502-ae87-1a4b-0303c5e5252b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8393e-0502-ae87-1a4b-0303c5e5252b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8393e-0502-ae87-1a4b-0303c5e5252b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6f363a34-db56-4609-ab9a-3c41e4455371 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8393e-0502-ae87-1a4b-0303c5e5252b?request_guid=6f363a34-db56-4609-ab9a-3c41e4455371 HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8393e-0502-ae87-1a4b-0303c5e5252b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9908cbc6-196c-4b8a-bdb8-965853d9c92e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8393e-0502-ae87-1a4b-0303c5e5252b?request_guid=9908cbc6-196c-4b8a-bdb8-965853d9c92e HTTP/1.1" 200 2169 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8393e-0502-ae87-1a4b-0303c5e5252b'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 90efb367-7485-4b52-92c8-3933a0eef63c +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8393e-0502-ae87-1a4b-0303c5e5252b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8393e-0502-ae87-1a4b-0303c5e5252b'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fb816b53-befc-4d42-86da-29e6f45abe58 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=90efb367-7485-4b52-92c8-3933a0eef63c&request_guid=fb816b53-befc-4d42-86da-29e6f45abe58 HTTP/1.1" 200 1797 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8393e-0502-b0de-1a4b-0303c5e51c4f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8393e-0502-b0de-1a4b-0303c5e51c4f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 0cee6821-f900-40ba-9540-90cb1c5de737 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 86759dda-b0b3-4eea-ab02-dd4acd9f4df8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0cee6821-f900-40ba-9540-90cb1c5de737&request_guid=86759dda-b0b3-4eea-ab02-dd4acd9f4df8 HTTP/1.1" 200 2285 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8393e-0502-af26-1a4b-0303c5e5427f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8393e-0502-af26-1a4b-0303c5e5427f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8393e-0502-af26-1a4b-0303c5e5427f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cf3c1508-80e3-463b-aaed-fea120eef22b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8393e-0502-af26-1a4b-0303c5e5427f?request_guid=cf3c1508-80e3-463b-aaed-fea120eef22b HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8393e-0502-af26-1a4b-0303c5e5427f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 73fffab0-a0a4-4f0b-906a-8588f21e9ec6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8393e-0502-af26-1a4b-0303c5e5427f?request_guid=73fffab0-a0a4-4f0b-906a-8588f21e9ec6 HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8393e-0502-af26-1a4b-0303c5e5427f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 7a6a4279-2480-4481-9fbe-9a9aaace3934 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8393e-0502-af26-1a4b-0303c5e5427f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8393e-0502-af26-1a4b-0303c5e5427f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 54e1c68a-7fa1-4c2b-b343-c47be6dd1780 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7a6a4279-2480-4481-9fbe-9a9aaace3934&request_guid=54e1c68a-7fa1-4c2b-b343-c47be6dd1780 HTTP/1.1" 200 2287 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8393e-0502-afee-1a4b-0303c5e5510f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8393e-0502-afee-1a4b-0303c5e5510f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.1981s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2187s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2276s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=499caad3-1a02-484f-9e47-c69f3417a3a2 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7dbab0bb-31b3-461b-8ba8-0a59b5966b3d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 1684883843216 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1684883843216 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 1684884133520 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1684884133520 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 1684884133520 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 1684884133520 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 1684883843216 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 1684883843216 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=499caad3-1a02-484f-9e47-c69f3417a3a2&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=7dbab0bb-31b3-461b-8ba8-0a59b5966b3d HTTP/1.1" 200 1552 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=1d6df82e-f12f-4061-8029-738d49d5fb6d +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c0115312-0f11-40cc-b8d0-27df7823d016 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=1d6df82e-f12f-4061-8029-738d49d5fb6d&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=c0115312-0f11-40cc-b8d0-27df7823d016 HTTP/1.1" 200 1548 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.01349s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: d9a0ad0f-9054-41da-977f-68ac59a4bad3 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6a91091c-57be-4fc3-8c1a-b7515bc3c3ae +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d9a0ad0f-9054-41da-977f-68ac59a4bad3&request_guid=6a91091c-57be-4fc3-8c1a-b7515bc3c3ae HTTP/1.1" 200 2275 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83940-0502-af26-1a4b-0303c5e5a5f7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83940-0502-af26-1a4b-0303c5e5a5f7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83940-0502-af26-1a4b-0303c5e5a5f7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0fb6e854-9432-49a3-81df-8f7bf7e9928e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83940-0502-af26-1a4b-0303c5e5a5f7?request_guid=0fb6e854-9432-49a3-81df-8f7bf7e9928e HTTP/1.1" 200 1856 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83940-0502-af26-1a4b-0303c5e5a5f7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: de7e6fd3-2b37-4f5e-81ad-6be246f3ab55 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83940-0502-af26-1a4b-0303c5e5a5f7?request_guid=de7e6fd3-2b37-4f5e-81ad-6be246f3ab55 HTTP/1.1" 200 1856 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83940-0502-af26-1a4b-0303c5e5a5f7'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 228d52d5-3d27-471b-9843-1f996b57bfc0 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83940-0502-af26-1a4b-0303c5e5a5f7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83940-0502-af26-1a4b-0303c5e5a5f7'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d926624e-6261-488e-859b-06abbd16ec41 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=228d52d5-3d27-471b-9843-1f996b57bfc0&request_guid=d926624e-6261-488e-859b-06abbd16ec41 HTTP/1.1" 200 2276 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83940-0502-afee-1a4b-0303c5e5b513 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83940-0502-afee-1a4b-0303c5e5b513 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: b3fa6e8d-8b20-438d-8605-4a09774cf8bb +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 34eaef5f-617b-4a3b-add0-f3331f762f7c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b3fa6e8d-8b20-438d-8605-4a09774cf8bb&request_guid=34eaef5f-617b-4a3b-add0-f3331f762f7c HTTP/1.1" 200 1798 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83940-0502-af26-1a4b-0303c5e5a623 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83940-0502-af26-1a4b-0303c5e5a623 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83940-0502-af26-1a4b-0303c5e5a623' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 77b4c8fd-2c51-4930-8fbe-1ffd48cfde9b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83940-0502-af26-1a4b-0303c5e5a623?request_guid=77b4c8fd-2c51-4930-8fbe-1ffd48cfde9b HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83940-0502-af26-1a4b-0303c5e5a623' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5bd1b0fc-5a4b-40a6-bbaa-e09fa248f63d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83940-0502-af26-1a4b-0303c5e5a623?request_guid=5bd1b0fc-5a4b-40a6-bbaa-e09fa248f63d HTTP/1.1" 200 2171 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83940-0502-af26-1a4b-0303c5e5a623'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: cf4e6930-f834-48da-adbb-c2d2cf55cf65 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83940-0502-af26-1a4b-0303c5e5a623'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83940-0502-af26-1a4b-0303c5e5a623'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e56d4b19-ef2b-49f7-ae0c-26cd3524585b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cf4e6930-f834-48da-adbb-c2d2cf55cf65&request_guid=e56d4b19-ef2b-49f7-ae0c-26cd3524585b HTTP/1.1" 200 1795 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83940-0502-b0de-1a4b-0303c5e5d3b7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83940-0502-b0de-1a4b-0303c5e5d3b7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: e32f3fd6-bf27-4571-a2cf-0df555ece20b +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cb6ca5d7-e7be-4141-886f-8acd3e5e4484 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e32f3fd6-bf27-4571-a2cf-0df555ece20b&request_guid=cb6ca5d7-e7be-4141-886f-8acd3e5e4484 HTTP/1.1" 200 2285 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83940-0502-af26-1a4b-0303c5e5a63f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83940-0502-af26-1a4b-0303c5e5a63f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83940-0502-af26-1a4b-0303c5e5a63f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c9cb8662-7766-418a-9fd4-6b80d9ff7727 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83940-0502-af26-1a4b-0303c5e5a63f?request_guid=c9cb8662-7766-418a-9fd4-6b80d9ff7727 HTTP/1.1" 200 1677 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83940-0502-af26-1a4b-0303c5e5a63f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a2bd2421-a8df-4e98-ab69-2620a2eb2fc6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83940-0502-af26-1a4b-0303c5e5a63f?request_guid=a2bd2421-a8df-4e98-ab69-2620a2eb2fc6 HTTP/1.1" 200 1677 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83940-0502-af26-1a4b-0303c5e5a63f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: f88e5f40-946f-4cd6-9b4e-53a29d994ced +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83940-0502-af26-1a4b-0303c5e5a63f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83940-0502-af26-1a4b-0303c5e5a63f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5a73446d-9a4a-4ffe-ab9c-565b326a2a81 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=f88e5f40-946f-4cd6-9b4e-53a29d994ced&request_guid=5a73446d-9a4a-4ffe-ab9c-565b326a2a81 HTTP/1.1" 200 2285 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83940-0502-af26-1a4b-0303c5e5a64b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83940-0502-af26-1a4b-0303c5e5a64b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:20:22] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:20:22] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:20:22] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:20:23] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:20:23] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 13.79s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 13.8s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 13.8s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=923bf91c-4994-456f-ba2a-284ec6adf8fb +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cacfbf60-1e5f-4261-bc0a-d5a6fb8f2888 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2195297478800 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2195297478800 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2195297769104 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2195297769104 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2195297769104 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2195297769104 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2195297478800 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2195297478800 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=923bf91c-4994-456f-ba2a-284ec6adf8fb&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=cacfbf60-1e5f-4261-bc0a-d5a6fb8f2888 HTTP/1.1" 200 1549 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=d61b918f-b8ae-4846-b436-1fd90040a16c +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 84a765ab-da71-42a5-a476-d80b3c913390 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=d61b918f-b8ae-4846-b436-1fd90040a16c&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=84a765ab-da71-42a5-a476-d80b3c913390 HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00197s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: b9901be9-c528-4a67-a0d1-eaf849598ac5 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 804c15f1-0a50-49d0-873e-fed49716b877 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b9901be9-c528-4a67-a0d1-eaf849598ac5&request_guid=804c15f1-0a50-49d0-873e-fed49716b877 HTTP/1.1" 200 2275 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83941-0502-b159-1a4b-0303c5e5f157 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83941-0502-b159-1a4b-0303c5e5f157 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83941-0502-b159-1a4b-0303c5e5f157' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ba027f6f-bd09-4e75-a256-0ec858e6ba1c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83941-0502-b159-1a4b-0303c5e5f157?request_guid=ba027f6f-bd09-4e75-a256-0ec858e6ba1c HTTP/1.1" 200 1853 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83941-0502-b159-1a4b-0303c5e5f157' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 447feb57-d1b6-40cb-86c3-d63ca487b210 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83941-0502-b159-1a4b-0303c5e5f157?request_guid=447feb57-d1b6-40cb-86c3-d63ca487b210 HTTP/1.1" 200 1851 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83941-0502-b159-1a4b-0303c5e5f157'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 1f68fa6d-4800-4d6f-8d8d-1a2553eb2cd3 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83941-0502-b159-1a4b-0303c5e5f157'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83941-0502-b159-1a4b-0303c5e5f157'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e80b6810-83a5-4f81-9857-76907dcd6c93 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1f68fa6d-4800-4d6f-8d8d-1a2553eb2cd3&request_guid=e80b6810-83a5-4f81-9857-76907dcd6c93 HTTP/1.1" 200 2277 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83941-0502-afee-1a4b-0303c5e5bf7f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83941-0502-afee-1a4b-0303c5e5bf7f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 316a9f66-013c-4a72-81fa-ad82b005c7c6 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8bada90b-fed8-468e-b0f5-17997cf0c35a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=316a9f66-013c-4a72-81fa-ad82b005c7c6&request_guid=8bada90b-fed8-468e-b0f5-17997cf0c35a HTTP/1.1" 200 1801 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83941-0502-afee-1a4b-0303c5e5bf83 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83941-0502-afee-1a4b-0303c5e5bf83 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83941-0502-afee-1a4b-0303c5e5bf83' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 24477af4-bf5f-481d-a91d-371fc43ef26c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83941-0502-afee-1a4b-0303c5e5bf83?request_guid=24477af4-bf5f-481d-a91d-371fc43ef26c HTTP/1.1" 200 2172 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83941-0502-afee-1a4b-0303c5e5bf83' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: eba84667-4d9a-46cd-a99c-cb3520f88bc0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83941-0502-afee-1a4b-0303c5e5bf83?request_guid=eba84667-4d9a-46cd-a99c-cb3520f88bc0 HTTP/1.1" 200 2173 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83941-0502-afee-1a4b-0303c5e5bf83'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 92517a48-0fe6-4cc3-95e7-14d05ac784ff +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83941-0502-afee-1a4b-0303c5e5bf83'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83941-0502-afee-1a4b-0303c5e5bf83'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4f163bce-2cb7-4921-b622-7be0d7662ce0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=92517a48-0fe6-4cc3-95e7-14d05ac784ff&request_guid=4f163bce-2cb7-4921-b622-7be0d7662ce0 HTTP/1.1" 200 1800 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83941-0502-ae87-1a4b-0303c5e5e407 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83941-0502-ae87-1a4b-0303c5e5e407 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: bcfe6bbe-8f53-4932-a139-b1f9391cdbe9 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 65011772-26a9-479e-b38a-20996fda7ff5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=bcfe6bbe-8f53-4932-a139-b1f9391cdbe9&request_guid=65011772-26a9-479e-b38a-20996fda7ff5 HTTP/1.1" 200 2284 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83941-0502-af26-1a4b-0303c5e60053 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83941-0502-af26-1a4b-0303c5e60053 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83941-0502-af26-1a4b-0303c5e60053' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 74544cbf-66ad-4275-90c7-6eefc299c7c3 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83941-0502-af26-1a4b-0303c5e60053?request_guid=74544cbf-66ad-4275-90c7-6eefc299c7c3 HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83941-0502-af26-1a4b-0303c5e60053' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b0ffbf82-6c01-4748-ae40-ded5db7f62f6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83941-0502-af26-1a4b-0303c5e60053?request_guid=b0ffbf82-6c01-4748-ae40-ded5db7f62f6 HTTP/1.1" 200 1681 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83941-0502-af26-1a4b-0303c5e60053'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 0d160162-190a-426c-8ce6-d717adcc1968 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83941-0502-af26-1a4b-0303c5e60053'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83941-0502-af26-1a4b-0303c5e60053'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a5c118c5-2c5b-40f6-82a2-71ae251f1ee6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0d160162-190a-426c-8ce6-d717adcc1968&request_guid=a5c118c5-2c5b-40f6-82a2-71ae251f1ee6 HTTP/1.1" 200 2284 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83941-0502-af26-1a4b-0303c5e60063 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83941-0502-af26-1a4b-0303c5e60063 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2589s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2642s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2689s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=15ccc793-e5a1-4bb9-84fd-3eac3b9ae34e +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 291905c4-9a3c-4837-8b75-8c40286bf122 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2363461396624 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2363461396624 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2363461670544 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2363461670544 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2363461670544 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2363461670544 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2363461396624 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2363461396624 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=15ccc793-e5a1-4bb9-84fd-3eac3b9ae34e&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=291905c4-9a3c-4837-8b75-8c40286bf122 HTTP/1.1" 200 1545 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=fed06495-118b-4338-a57a-10bbff5ad44b +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2d911833-1627-4146-b7a4-d70c5770c929 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=fed06495-118b-4338-a57a-10bbff5ad44b&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=2d911833-1627-4146-b7a4-d70c5770c929 HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00319s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: e47e8220-5452-42b5-a557-dc3a2b41ef09 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 42684d2b-d535-4e40-ac42-b3058a7aca5b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=e47e8220-5452-42b5-a557-dc3a2b41ef09&request_guid=42684d2b-d535-4e40-ac42-b3058a7aca5b HTTP/1.1" 200 2276 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83942-0502-b0de-1a4b-0303c5e63e43 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83942-0502-b0de-1a4b-0303c5e63e43 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83942-0502-b0de-1a4b-0303c5e63e43' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 279f07d5-6af4-4907-8e44-b72a7d8bb659 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83942-0502-b0de-1a4b-0303c5e63e43?request_guid=279f07d5-6af4-4907-8e44-b72a7d8bb659 HTTP/1.1" 200 1845 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83942-0502-b0de-1a4b-0303c5e63e43' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f9b423ee-2d21-440d-b6a2-285b08cb784e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83942-0502-b0de-1a4b-0303c5e63e43?request_guid=f9b423ee-2d21-440d-b6a2-285b08cb784e HTTP/1.1" 200 1845 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83942-0502-b0de-1a4b-0303c5e63e43'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: dabf794a-67bd-4a9e-8544-21f5bc6c4734 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83942-0502-b0de-1a4b-0303c5e63e43'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83942-0502-b0de-1a4b-0303c5e63e43'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1a2b822d-801b-4f0c-8868-d41225e99659 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=dabf794a-67bd-4a9e-8544-21f5bc6c4734&request_guid=1a2b822d-801b-4f0c-8868-d41225e99659 HTTP/1.1" 200 2279 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83942-0502-ae87-1a4b-0303c5e641a3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83942-0502-ae87-1a4b-0303c5e641a3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 39ce3577-8368-4ab5-bec6-9516e37c5042 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1bf5261b-a8e3-4747-acb0-4fd01df968d8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=39ce3577-8368-4ab5-bec6-9516e37c5042&request_guid=1bf5261b-a8e3-4747-acb0-4fd01df968d8 HTTP/1.1" 200 1798 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83942-0502-af26-1a4b-0303c5e60da3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83942-0502-af26-1a4b-0303c5e60da3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83942-0502-af26-1a4b-0303c5e60da3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 93e4a59b-300b-4acf-a369-9c47ed028e93 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83942-0502-af26-1a4b-0303c5e60da3?request_guid=93e4a59b-300b-4acf-a369-9c47ed028e93 HTTP/1.1" 200 2174 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83942-0502-af26-1a4b-0303c5e60da3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 532f1ba9-afaf-4247-9cb2-85917ea65068 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83942-0502-af26-1a4b-0303c5e60da3?request_guid=532f1ba9-afaf-4247-9cb2-85917ea65068 HTTP/1.1" 200 2173 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83942-0502-af26-1a4b-0303c5e60da3'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: cd358071-f8ee-4fa3-b21d-2d922f864363 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83942-0502-af26-1a4b-0303c5e60da3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83942-0502-af26-1a4b-0303c5e60da3'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e6755556-769d-4eea-b106-4db44ea44062 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=cd358071-f8ee-4fa3-b21d-2d922f864363&request_guid=e6755556-769d-4eea-b106-4db44ea44062 HTTP/1.1" 200 1800 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83942-0502-b159-1a4b-0303c5e65057 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83942-0502-b159-1a4b-0303c5e65057 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: c929657c-12b1-4c31-ac78-c076298b1e45 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f23b740f-1af0-461c-b04e-793ad88a4758 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c929657c-12b1-4c31-ac78-c076298b1e45&request_guid=f23b740f-1af0-461c-b04e-793ad88a4758 HTTP/1.1" 200 2285 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83942-0502-af26-1a4b-0303c5e60dbf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83942-0502-af26-1a4b-0303c5e60dbf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83942-0502-af26-1a4b-0303c5e60dbf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1a8587b2-74a2-45cd-b1da-789c79e68f9a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83942-0502-af26-1a4b-0303c5e60dbf?request_guid=1a8587b2-74a2-45cd-b1da-789c79e68f9a HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83942-0502-af26-1a4b-0303c5e60dbf' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 35149c6e-12e5-4450-b7be-86b4cd455c9e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83942-0502-af26-1a4b-0303c5e60dbf?request_guid=35149c6e-12e5-4450-b7be-86b4cd455c9e HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83942-0502-af26-1a4b-0303c5e60dbf'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 798ddccf-061c-4622-96a7-0610dcdc75be +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83942-0502-af26-1a4b-0303c5e60dbf'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83942-0502-af26-1a4b-0303c5e60dbf'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 721f3e0b-2355-4e24-b2c4-1d11742ee8bc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=798ddccf-061c-4622-96a7-0610dcdc75be&request_guid=721f3e0b-2355-4e24-b2c4-1d11742ee8bc HTTP/1.1" 200 2286 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83942-0502-ae87-1a4b-0303c5e641e3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83942-0502-ae87-1a4b-0303c5e641e3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2006s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2615s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.3215s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=26177a80-1c49-41e6-a75a-3956a0ccceb7 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a1cc9f63-2386-46ba-86a3-362cd311afb5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2182168520848 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2182168520848 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2182168794768 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2182168794768 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2182168794768 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2182168794768 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2182168520848 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2182168520848 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=26177a80-1c49-41e6-a75a-3956a0ccceb7&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=a1cc9f63-2386-46ba-86a3-362cd311afb5 HTTP/1.1" 200 1546 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=8151712a-1794-4a3f-beaf-21d3e273236e +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a39857db-2945-414e-8e15-cafdeef923dc +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=8151712a-1794-4a3f-beaf-21d3e273236e&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=a39857db-2945-414e-8e15-cafdeef923dc HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00165s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: d5c7e9b6-55c1-42ab-98d9-7b1e25b920d3 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 01e77ad1-2380-4b6a-92b3-bb224e4b4fc1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d5c7e9b6-55c1-42ab-98d9-7b1e25b920d3&request_guid=01e77ad1-2380-4b6a-92b3-bb224e4b4fc1 HTTP/1.1" 200 2280 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83946-0502-afee-1a4b-0303c5e75ea7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83946-0502-afee-1a4b-0303c5e75ea7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83946-0502-afee-1a4b-0303c5e75ea7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b2b39bca-dbaf-4d53-981c-f86d4a09b1fa +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83946-0502-afee-1a4b-0303c5e75ea7?request_guid=b2b39bca-dbaf-4d53-981c-f86d4a09b1fa HTTP/1.1" 200 1845 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83946-0502-afee-1a4b-0303c5e75ea7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 8f6ad9ef-ebc3-433f-818a-ce461f2ff969 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83946-0502-afee-1a4b-0303c5e75ea7?request_guid=8f6ad9ef-ebc3-433f-818a-ce461f2ff969 HTTP/1.1" 200 1843 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83946-0502-afee-1a4b-0303c5e75ea7'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 61bc823a-717a-4df3-b455-cc4331de3b7a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83946-0502-afee-1a4b-0303c5e75ea7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83946-0502-afee-1a4b-0303c5e75ea7'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f45d3d32-baf1-4385-b309-7e78e64cd597 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=61bc823a-717a-4df3-b455-cc4331de3b7a&request_guid=f45d3d32-baf1-4385-b309-7e78e64cd597 HTTP/1.1" 200 2277 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83946-0502-af26-1a4b-0303c5e74eb7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83946-0502-af26-1a4b-0303c5e74eb7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 0f6a86ef-3874-4c0f-a940-2381ca92310f +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fe763e64-28fb-40f0-9644-9e7525fbf5ee +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0f6a86ef-3874-4c0f-a940-2381ca92310f&request_guid=fe763e64-28fb-40f0-9644-9e7525fbf5ee HTTP/1.1" 200 1800 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83946-0502-ae87-1a4b-0303c5e78067 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83946-0502-ae87-1a4b-0303c5e78067 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83946-0502-ae87-1a4b-0303c5e78067' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d42ef9e3-f848-43fb-b404-8e4b2e826b4f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83946-0502-ae87-1a4b-0303c5e78067?request_guid=d42ef9e3-f848-43fb-b404-8e4b2e826b4f HTTP/1.1" 200 2171 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83946-0502-ae87-1a4b-0303c5e78067' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0c755608-adca-44b5-9555-ed79c1e5d2b6 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83946-0502-ae87-1a4b-0303c5e78067?request_guid=0c755608-adca-44b5-9555-ed79c1e5d2b6 HTTP/1.1" 200 2171 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83946-0502-ae87-1a4b-0303c5e78067'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 48aeabfa-f67b-41e1-8cf2-c4d65ebe6944 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83946-0502-ae87-1a4b-0303c5e78067'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83946-0502-ae87-1a4b-0303c5e78067'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 361efcc9-67d3-4679-8c9a-68a75fe86573 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=48aeabfa-f67b-41e1-8cf2-c4d65ebe6944&request_guid=361efcc9-67d3-4679-8c9a-68a75fe86573 HTTP/1.1" 200 1802 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83946-0502-b159-1a4b-0303c5e761cb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83946-0502-b159-1a4b-0303c5e761cb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 6d6682b1-8ca7-4640-a67e-104bb9726d88 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c39d925d-7399-4f7f-a413-4d2e3b7a859a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6d6682b1-8ca7-4640-a67e-104bb9726d88&request_guid=c39d925d-7399-4f7f-a413-4d2e3b7a859a HTTP/1.1" 200 2281 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83946-0502-b1d6-1a4b-0303c5e771a7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83946-0502-b1d6-1a4b-0303c5e771a7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83946-0502-b1d6-1a4b-0303c5e771a7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b9f0bc52-3dc1-4530-85aa-d0e99e864cc7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83946-0502-b1d6-1a4b-0303c5e771a7?request_guid=b9f0bc52-3dc1-4530-85aa-d0e99e864cc7 HTTP/1.1" 200 1673 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83946-0502-b1d6-1a4b-0303c5e771a7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 6a296870-3236-48e7-adb9-c4da3cebf032 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83946-0502-b1d6-1a4b-0303c5e771a7?request_guid=6a296870-3236-48e7-adb9-c4da3cebf032 HTTP/1.1" 200 1674 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83946-0502-b1d6-1a4b-0303c5e771a7'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 085f022a-4d74-40a4-8321-17a312367ad5 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83946-0502-b1d6-1a4b-0303c5e771a7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83946-0502-b1d6-1a4b-0303c5e771a7'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 0cb37962-3178-4bcb-85d8-e19114b7eaba +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=085f022a-4d74-40a4-8321-17a312367ad5&request_guid=0cb37962-3178-4bcb-85d8-e19114b7eaba HTTP/1.1" 200 2284 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83946-0502-b159-1a4b-0303c5e761ef +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83946-0502-b159-1a4b-0303c5e761ef +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:26:25] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:26:25] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:26:25] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:26:25] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:26:26] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 31.02s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 31.02s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 31.03s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=c304a445-2b1c-4042-bcce-210df057eb3d +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 107cd5bd-df68-49f8-a3ed-5edca103a477 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2251923973184 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2251923973184 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2251924296256 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2251924296256 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2251924296256 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2251924296256 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2251923973184 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2251923973184 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=c304a445-2b1c-4042-bcce-210df057eb3d&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=107cd5bd-df68-49f8-a3ed-5edca103a477 HTTP/1.1" 200 1543 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=5d055a2d-148e-4893-9d60-53dc0dca1d2b +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7fe69428-c257-4d31-8756-11c27a138e16 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=5d055a2d-148e-4893-9d60-53dc0dca1d2b&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=7fe69428-c257-4d31-8756-11c27a138e16 HTTP/1.1" 200 1546 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00322s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: ffa3ab79-dda7-40f3-a6f8-93d774ad601e +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3d54e809-6977-42fc-931d-72df12fa6310 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=ffa3ab79-dda7-40f3-a6f8-93d774ad601e&request_guid=3d54e809-6977-42fc-931d-72df12fa6310 HTTP/1.1" 200 2279 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83948-0502-ae87-1a4b-0303c5e7f1ff +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83948-0502-ae87-1a4b-0303c5e7f1ff +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83948-0502-ae87-1a4b-0303c5e7f1ff' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 409d413e-7815-4854-8627-04cc98454647 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83948-0502-ae87-1a4b-0303c5e7f1ff?request_guid=409d413e-7815-4854-8627-04cc98454647 HTTP/1.1" 200 1852 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83948-0502-ae87-1a4b-0303c5e7f1ff' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9a5eef3b-1213-4f4e-a82c-54915aa72bfd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83948-0502-ae87-1a4b-0303c5e7f1ff?request_guid=9a5eef3b-1213-4f4e-a82c-54915aa72bfd HTTP/1.1" 200 1852 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83948-0502-ae87-1a4b-0303c5e7f1ff'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 7759a391-9e24-4b6c-ae98-60eb4518ac7e +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83948-0502-ae87-1a4b-0303c5e7f1ff'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83948-0502-ae87-1a4b-0303c5e7f1ff'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c0517ce8-e242-449b-a289-23f3d4727845 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=7759a391-9e24-4b6c-ae98-60eb4518ac7e&request_guid=c0517ce8-e242-449b-a289-23f3d4727845 HTTP/1.1" 200 2277 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83948-0502-b159-1a4b-0303c5e7c4bf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83948-0502-b159-1a4b-0303c5e7c4bf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 5eaf89f5-a71f-4007-9aab-15aa3f43492c +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 294b0031-ee4c-4478-9c5d-76e8b75a849f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=5eaf89f5-a71f-4007-9aab-15aa3f43492c&request_guid=294b0031-ee4c-4478-9c5d-76e8b75a849f HTTP/1.1" 200 1798 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83948-0502-b0de-1a4b-0303c5e7e1bb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83948-0502-b0de-1a4b-0303c5e7e1bb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83948-0502-b0de-1a4b-0303c5e7e1bb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: b0e8e86d-aa43-4f61-9733-99b32d87c730 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83948-0502-b0de-1a4b-0303c5e7e1bb?request_guid=b0e8e86d-aa43-4f61-9733-99b32d87c730 HTTP/1.1" 200 2165 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83948-0502-b0de-1a4b-0303c5e7e1bb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 087c8c25-9024-438a-8e91-19fff9da1217 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83948-0502-b0de-1a4b-0303c5e7e1bb?request_guid=087c8c25-9024-438a-8e91-19fff9da1217 HTTP/1.1" 200 2166 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83948-0502-b0de-1a4b-0303c5e7e1bb'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 39fa4c12-3037-43b7-8ae6-604a1987bbd3 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83948-0502-b0de-1a4b-0303c5e7e1bb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83948-0502-b0de-1a4b-0303c5e7e1bb'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5e5830ef-6c35-4078-abbf-c5fe32477fe8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=39fa4c12-3037-43b7-8ae6-604a1987bbd3&request_guid=5e5830ef-6c35-4078-abbf-c5fe32477fe8 HTTP/1.1" 200 1797 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83948-0502-b1d6-1a4b-0303c5e7d383 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83948-0502-b1d6-1a4b-0303c5e7d383 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: b4d09b96-7581-4ffe-a1ea-72a0d742271b +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 47953641-34bc-4204-b5a2-9bd3bbd89d32 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b4d09b96-7581-4ffe-a1ea-72a0d742271b&request_guid=47953641-34bc-4204-b5a2-9bd3bbd89d32 HTTP/1.1" 200 2282 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83948-0502-b0de-1a4b-0303c5e7e1d3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83948-0502-b0de-1a4b-0303c5e7e1d3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83948-0502-b0de-1a4b-0303c5e7e1d3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: be6b0439-0537-4b37-87d5-4cd7a848bb32 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83948-0502-b0de-1a4b-0303c5e7e1d3?request_guid=be6b0439-0537-4b37-87d5-4cd7a848bb32 HTTP/1.1" 200 1672 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83948-0502-b0de-1a4b-0303c5e7e1d3' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1db1ad3d-6514-4a25-a612-104d64259449 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83948-0502-b0de-1a4b-0303c5e7e1d3?request_guid=1db1ad3d-6514-4a25-a612-104d64259449 HTTP/1.1" 200 1673 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83948-0502-b0de-1a4b-0303c5e7e1d3'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 29f8f813-80e6-4938-ae75-3e78f69e3072 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83948-0502-b0de-1a4b-0303c5e7e1d3'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83948-0502-b0de-1a4b-0303c5e7e1d3'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9210275d-5ba5-47ef-b217-e973366985f2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=29f8f813-80e6-4938-ae75-3e78f69e3072&request_guid=9210275d-5ba5-47ef-b217-e973366985f2 HTTP/1.1" 200 2286 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83948-0502-b159-1a4b-0303c5e7c4df +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83948-0502-b159-1a4b-0303c5e7c4df +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:28:04] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:28:04] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:28:04] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:28:05] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2007s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2066s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2288s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=2817da9b-a2ff-429e-8d04-f0a0d013406a +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 69b5a307-eda4-4277-8068-3fab0fc79e6f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2356544136256 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2356544136256 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2356544426560 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2356544426560 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2356544426560 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2356544426560 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2356544136256 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2356544136256 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=2817da9b-a2ff-429e-8d04-f0a0d013406a&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=69b5a307-eda4-4277-8068-3fab0fc79e6f HTTP/1.1" 200 1549 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=1c109c6c-1a7d-4992-b2fe-b685d2fe3172 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1aba5f38-00be-4b5b-987a-f837f2ee27ca +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=1c109c6c-1a7d-4992-b2fe-b685d2fe3172&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=1aba5f38-00be-4b5b-987a-f837f2ee27ca HTTP/1.1" 200 1554 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00190s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 1565ad6d-defb-4dab-9877-e18dd434a542 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 81b5acae-a962-4fe6-9155-ba7b69e3c0da +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=1565ad6d-defb-4dab-9877-e18dd434a542&request_guid=81b5acae-a962-4fe6-9155-ba7b69e3c0da HTTP/1.1" 200 None +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8394a-0502-af26-1a4b-0303c5e86b1f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8394a-0502-af26-1a4b-0303c5e86b1f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8394a-0502-af26-1a4b-0303c5e86b1f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ad8ddcff-f1ec-4d90-b751-5a5af212ec33 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8394a-0502-af26-1a4b-0303c5e86b1f?request_guid=ad8ddcff-f1ec-4d90-b751-5a5af212ec33 HTTP/1.1" 200 1852 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8394a-0502-af26-1a4b-0303c5e86b1f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 48c4b83f-5ba2-4ce0-81e7-2b4bdd9d5a72 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8394a-0502-af26-1a4b-0303c5e86b1f?request_guid=48c4b83f-5ba2-4ce0-81e7-2b4bdd9d5a72 HTTP/1.1" 200 1853 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8394a-0502-af26-1a4b-0303c5e86b1f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: de3a5b92-6256-4b01-beb0-f3b6d9b09359 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8394a-0502-af26-1a4b-0303c5e86b1f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8394a-0502-af26-1a4b-0303c5e86b1f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 64735711-e7b6-4dd8-b383-a910db886b09 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=de3a5b92-6256-4b01-beb0-f3b6d9b09359&request_guid=64735711-e7b6-4dd8-b383-a910db886b09 HTTP/1.1" 200 2279 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8394a-0502-afee-1a4b-0303c5e87913 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8394a-0502-afee-1a4b-0303c5e87913 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 30cc79b9-558a-4edc-8373-693bb1c8b638 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 074442a2-b544-46c6-b89e-1fea88ea894a +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=30cc79b9-558a-4edc-8373-693bb1c8b638&request_guid=074442a2-b544-46c6-b89e-1fea88ea894a HTTP/1.1" 200 1802 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8394a-0502-afee-1a4b-0303c5e87917 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8394a-0502-afee-1a4b-0303c5e87917 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8394a-0502-afee-1a4b-0303c5e87917' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1a9a433f-4b32-4bb3-bd3b-e279594b71bb +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8394a-0502-afee-1a4b-0303c5e87917?request_guid=1a9a433f-4b32-4bb3-bd3b-e279594b71bb HTTP/1.1" 200 2175 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8394a-0502-afee-1a4b-0303c5e87917' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: eec43e11-fb11-4c8e-9528-af7149d956a7 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8394a-0502-afee-1a4b-0303c5e87917?request_guid=eec43e11-fb11-4c8e-9528-af7149d956a7 HTTP/1.1" 200 2174 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8394a-0502-afee-1a4b-0303c5e87917'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: fb7b47b9-06aa-46f5-a14a-f7d0eec6389b +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8394a-0502-afee-1a4b-0303c5e87917'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8394a-0502-afee-1a4b-0303c5e87917'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d3efa52e-48a6-47ad-95ad-28fa6f8055d1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=fb7b47b9-06aa-46f5-a14a-f7d0eec6389b&request_guid=d3efa52e-48a6-47ad-95ad-28fa6f8055d1 HTTP/1.1" 200 1798 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8394a-0502-b1d6-1a4b-0303c5e83e5f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8394a-0502-b1d6-1a4b-0303c5e83e5f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: c97835e9-3597-428b-84ca-27fd35cec65d +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: af975b42-2b24-4984-8982-6861cf6ceab5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=c97835e9-3597-428b-84ca-27fd35cec65d&request_guid=af975b42-2b24-4984-8982-6861cf6ceab5 HTTP/1.1" 200 2285 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8394a-0502-af26-1a4b-0303c5e86bdb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8394a-0502-af26-1a4b-0303c5e86bdb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8394a-0502-af26-1a4b-0303c5e86bdb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5b7ad2bd-4886-487a-bd61-0cb002621e8b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8394a-0502-af26-1a4b-0303c5e86bdb?request_guid=5b7ad2bd-4886-487a-bd61-0cb002621e8b HTTP/1.1" 200 1677 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8394a-0502-af26-1a4b-0303c5e86bdb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 91efa57a-3a06-4f0f-b33e-7c445c85e7b1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8394a-0502-af26-1a4b-0303c5e86bdb?request_guid=91efa57a-3a06-4f0f-b33e-7c445c85e7b1 HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8394a-0502-af26-1a4b-0303c5e86bdb'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 363c3d99-5b23-498e-b867-b431b7ee0257 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8394a-0502-af26-1a4b-0303c5e86bdb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8394a-0502-af26-1a4b-0303c5e86bdb'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 65a91086-767b-40ae-806b-8f8817127690 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=363c3d99-5b23-498e-b867-b431b7ee0257&request_guid=65a91086-767b-40ae-806b-8f8817127690 HTTP/1.1" 200 2281 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8394a-0502-b1d6-1a4b-0303c5e83e83 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8394a-0502-b1d6-1a4b-0303c5e83e83 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:30:17] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:30:17] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:30:17] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:30:18] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2734s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.279s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.299s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=481b0fd9-1a41-49f8-a562-d75303da5a37 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 7d5e1eae-f610-4139-8936-f265c6c97044 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2346851887392 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2346851887392 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2346852161312 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2346852161312 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2346852161312 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2346852161312 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2346851887392 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2346851887392 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=481b0fd9-1a41-49f8-a562-d75303da5a37&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=7d5e1eae-f610-4139-8936-f265c6c97044 HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=bd238d84-cae2-4d8f-8479-2eccbef41821 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a9b77665-bf03-4b81-bad6-00b5eb98c136 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=bd238d84-cae2-4d8f-8479-2eccbef41821&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=a9b77665-bf03-4b81-bad6-00b5eb98c136 HTTP/1.1" 200 1548 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00219s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: d58b60cc-0c74-4a5b-8fc8-909fd135f095 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cc60c1ca-6de7-4376-9e96-59c18f738440 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=d58b60cc-0c74-4a5b-8fc8-909fd135f095&request_guid=cc60c1ca-6de7-4376-9e96-59c18f738440 HTTP/1.1" 200 2275 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8394c-0502-b159-1a4b-0303c5e8edf7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8394c-0502-b159-1a4b-0303c5e8edf7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8394c-0502-b159-1a4b-0303c5e8edf7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 46807b57-f9cd-44c5-bbaf-15dc1c26376d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8394c-0502-b159-1a4b-0303c5e8edf7?request_guid=46807b57-f9cd-44c5-bbaf-15dc1c26376d HTTP/1.1" 200 1859 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8394c-0502-b159-1a4b-0303c5e8edf7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: cd796ed7-680d-4ba8-a381-d2f22372f7fd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8394c-0502-b159-1a4b-0303c5e8edf7?request_guid=cd796ed7-680d-4ba8-a381-d2f22372f7fd HTTP/1.1" 200 1860 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8394c-0502-b159-1a4b-0303c5e8edf7'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 0c91e16a-ca83-43e4-b0c3-81cac7d4fb54 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8394c-0502-b159-1a4b-0303c5e8edf7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8394c-0502-b159-1a4b-0303c5e8edf7'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: fa83f26e-a44e-4acf-8ef8-90192f5d9a34 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=0c91e16a-ca83-43e4-b0c3-81cac7d4fb54&request_guid=fa83f26e-a44e-4acf-8ef8-90192f5d9a34 HTTP/1.1" 200 2276 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8394c-0502-afee-1a4b-0303c5e907cf +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8394c-0502-afee-1a4b-0303c5e907cf +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 902281d9-f4f5-4b43-9e75-4e19f771294d +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1dcbb7f9-51f1-4802-a30f-a47ddecba736 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=902281d9-f4f5-4b43-9e75-4e19f771294d&request_guid=1dcbb7f9-51f1-4802-a30f-a47ddecba736 HTTP/1.1" 200 1802 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8394c-0502-afee-1a4b-0303c5e907d7 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8394c-0502-afee-1a4b-0303c5e907d7 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8394c-0502-afee-1a4b-0303c5e907d7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 74ce842a-8748-46e9-b269-1b1a57a3272b +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8394c-0502-afee-1a4b-0303c5e907d7?request_guid=74ce842a-8748-46e9-b269-1b1a57a3272b HTTP/1.1" 200 2166 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8394c-0502-afee-1a4b-0303c5e907d7' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e937414a-d60d-4e35-9c04-be1b2213f708 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8394c-0502-afee-1a4b-0303c5e907d7?request_guid=e937414a-d60d-4e35-9c04-be1b2213f708 HTTP/1.1" 200 2167 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8394c-0502-afee-1a4b-0303c5e907d7'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 9b54e51e-88ea-4a65-80d7-bb718ffc6826 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8394c-0502-afee-1a4b-0303c5e907d7'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8394c-0502-afee-1a4b-0303c5e907d7'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e88122e9-0459-4d14-8f9b-821180593005 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=9b54e51e-88ea-4a65-80d7-bb718ffc6826&request_guid=e88122e9-0459-4d14-8f9b-821180593005 HTTP/1.1" 200 1802 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8394c-0502-afee-1a4b-0303c5e907f3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8394c-0502-afee-1a4b-0303c5e907f3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: b04ad58e-de94-4002-8276-1517a49ddd65 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9f505007-6e76-4aba-a67b-99888af72b8c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b04ad58e-de94-4002-8276-1517a49ddd65&request_guid=9f505007-6e76-4aba-a67b-99888af72b8c HTTP/1.1" 200 2284 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8394c-0502-b159-1a4b-0303c5e8ee3f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8394c-0502-b159-1a4b-0303c5e8ee3f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8394c-0502-b159-1a4b-0303c5e8ee3f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 53722440-2d28-4d51-8736-97e572bd68e1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8394c-0502-b159-1a4b-0303c5e8ee3f?request_guid=53722440-2d28-4d51-8736-97e572bd68e1 HTTP/1.1" 200 1685 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8394c-0502-b159-1a4b-0303c5e8ee3f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 9251c22b-4c2e-478c-9107-8036c1541663 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8394c-0502-b159-1a4b-0303c5e8ee3f?request_guid=9251c22b-4c2e-478c-9107-8036c1541663 HTTP/1.1" 200 1684 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8394c-0502-b159-1a4b-0303c5e8ee3f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 3e5aba07-e166-41a0-a439-06623919ce3a +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8394c-0502-b159-1a4b-0303c5e8ee3f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8394c-0502-b159-1a4b-0303c5e8ee3f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 74647894-7cfd-4f43-8e07-c4e3c8d97ef5 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3e5aba07-e166-41a0-a439-06623919ce3a&request_guid=74647894-7cfd-4f43-8e07-c4e3c8d97ef5 HTTP/1.1" 200 2287 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8394c-0502-afee-1a4b-0303c5e90803 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8394c-0502-afee-1a4b-0303c5e90803 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.4281s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.5242s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.6354s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=020ef9f3-c5b8-46c7-9a9c-c9c320592460 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3f1a9a2f-836f-40ad-a901-e6436956b5d1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2898548238720 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2898548238720 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2898548529024 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2898548529024 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2898548529024 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2898548529024 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2898548238720 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2898548238720 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=020ef9f3-c5b8-46c7-9a9c-c9c320592460&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=3f1a9a2f-836f-40ad-a901-e6436956b5d1 HTTP/1.1" 200 1545 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=edbe1cab-afaf-4867-b46e-da1aaabc0424 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 940f6292-9140-433a-a6ee-41cb7d4a613c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=edbe1cab-afaf-4867-b46e-da1aaabc0424&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=940f6292-9140-433a-a6ee-41cb7d4a613c HTTP/1.1" 200 1551 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00187s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 6f1c0753-e49c-48b6-bd28-36e44baa3c3d +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e9e87131-ed15-4d9d-bf28-c69ad2622221 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6f1c0753-e49c-48b6-bd28-36e44baa3c3d&request_guid=e9e87131-ed15-4d9d-bf28-c69ad2622221 HTTP/1.1" 200 2274 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8394d-0502-b1d6-1a4b-0303c5e9579f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8394d-0502-b1d6-1a4b-0303c5e9579f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8394d-0502-b1d6-1a4b-0303c5e9579f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 05235a4a-0659-4dd1-93e5-f8f73901174e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8394d-0502-b1d6-1a4b-0303c5e9579f?request_guid=05235a4a-0659-4dd1-93e5-f8f73901174e HTTP/1.1" 200 1857 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8394d-0502-b1d6-1a4b-0303c5e9579f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1bca5379-ae93-4649-b14c-5c9c14b3aa60 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8394d-0502-b1d6-1a4b-0303c5e9579f?request_guid=1bca5379-ae93-4649-b14c-5c9c14b3aa60 HTTP/1.1" 200 1857 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8394d-0502-b1d6-1a4b-0303c5e9579f'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: 752822f8-8b5d-41a5-919d-7435add81513 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8394d-0502-b1d6-1a4b-0303c5e9579f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8394d-0502-b1d6-1a4b-0303c5e9579f'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1d547e0c-b172-47d7-adea-d112d837449c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=752822f8-8b5d-41a5-919d-7435add81513&request_guid=1d547e0c-b172-47d7-adea-d112d837449c HTTP/1.1" 200 2276 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8394d-0502-b159-1a4b-0303c5e948bb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8394d-0502-b159-1a4b-0303c5e948bb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: 3c3c3974-c4a6-4ddd-b292-e6c25b47ce96 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 3b875b62-d348-4dde-9c3f-3ab317ac30f8 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=3c3c3974-c4a6-4ddd-b292-e6c25b47ce96&request_guid=3b875b62-d348-4dde-9c3f-3ab317ac30f8 HTTP/1.1" 200 1796 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8394d-0502-b1d6-1a4b-0303c5e957cb +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8394d-0502-b1d6-1a4b-0303c5e957cb +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8394d-0502-b1d6-1a4b-0303c5e957cb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f430d9bc-f279-442a-96a7-b4e651bb8627 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8394d-0502-b1d6-1a4b-0303c5e957cb?request_guid=f430d9bc-f279-442a-96a7-b4e651bb8627 HTTP/1.1" 200 2163 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8394d-0502-b1d6-1a4b-0303c5e957cb' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 4529ae7f-7f46-44cf-8709-efd8d5258b2c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8394d-0502-b1d6-1a4b-0303c5e957cb?request_guid=4529ae7f-7f46-44cf-8709-efd8d5258b2c HTTP/1.1" 200 2161 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8394d-0502-b1d6-1a4b-0303c5e957cb'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: abc40e46-c344-4726-a600-1caf7562e7c7 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8394d-0502-b1d6-1a4b-0303c5e957cb'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8394d-0502-b1d6-1a4b-0303c5e957cb'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e677f72b-67f9-4ad1-aefc-d0844b48a177 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=abc40e46-c344-4726-a600-1caf7562e7c7&request_guid=e677f72b-67f9-4ad1-aefc-d0844b48a177 HTTP/1.1" 200 1798 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8394d-0502-b1d6-1a4b-0303c5e957f3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8394d-0502-b1d6-1a4b-0303c5e957f3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: b3c4f521-a718-47f3-9fb9-5952926beff8 +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1ccd5f6e-22e2-4eb6-a228-7e7e6cdc1b00 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b3c4f521-a718-47f3-9fb9-5952926beff8&request_guid=1ccd5f6e-22e2-4eb6-a228-7e7e6cdc1b00 HTTP/1.1" 200 2288 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8394d-0502-afee-1a4b-0303c5e97263 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8394d-0502-afee-1a4b-0303c5e97263 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8394d-0502-afee-1a4b-0303c5e97263' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 03f068d9-74bc-4df7-8cb1-f9e04ed8b6c1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8394d-0502-afee-1a4b-0303c5e97263?request_guid=03f068d9-74bc-4df7-8cb1-f9e04ed8b6c1 HTTP/1.1" 200 1674 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a8394d-0502-afee-1a4b-0303c5e97263' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: e318abc2-0889-48ba-8a12-7fa8a9d5c091 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a8394d-0502-afee-1a4b-0303c5e97263?request_guid=e318abc2-0889-48ba-8a12-7fa8a9d5c091 HTTP/1.1" 200 1674 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a8394d-0502-afee-1a4b-0303c5e97263'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: a50ff639-ee7f-4e22-a3c5-5aae92932461 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a8394d-0502-afee-1a4b-0303c5e97263'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a8394d-0502-afee-1a4b-0303c5e97263'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 1b48c8c1-895a-4dd9-a2f8-0f6e1d20a48f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a50ff639-ee7f-4e22-a3c5-5aae92932461&request_guid=1b48c8c1-895a-4dd9-a2f8-0f6e1d20a48f HTTP/1.1" 200 2283 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a8394d-0502-b0de-1a4b-0303c5e98223 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a8394d-0502-b0de-1a4b-0303c5e98223 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:werkzeug: * Detected change in 'D:\\Projects\\grmusim_qlik_di\\scripts\\recovery-ui\\function\\Writer.py', reloading +INFO:werkzeug: * Running on all addresses (0.0.0.0) + WARNING: This is a development server. Do not use it in a production deployment. + * Running on http://127.0.0.1:8080 + * Running on http://10.160.24.242:8080 (Press CTRL+C to quit) +INFO:werkzeug: * Restarting with stat +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 337-346-157 +INFO:sqlalchemy.engine.Engine:BEGIN (implicit) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2007s ago] ('fromdata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2396s ago] ('todata', 1, 0) +INFO:sqlalchemy.engine.Engine:SELECT settings.id AS settings_id, settings.keyname AS settings_keyname, settings.valuename AS settings_valuename +FROM settings +WHERE settings.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 0.2677s ago] ('recovereddata', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +INFO:snowflake.connector.connection:Setting use_openssl_only mode to False +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=a07e8e1b-41ac-43c0-9e77-08ca3d5ae6e6 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 5aecfa2e-238f-4e5d-968d-cacc46e1496f +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:filelock:Attempting to acquire lock 2210653006112 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2210653006112 acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Attempting to acquire lock 2210653280032 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2210653280032 not acquired on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock, waiting 0.05 seconds ... +DEBUG:filelock:Attempting to acquire lock 2210653280032 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Timeout on acquiring lock 2210653280032 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.cache:acquiring C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock timed out, skipping saving... +DEBUG:filelock:Attempting to release lock 2210653006112 on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:filelock:Lock 2210653006112 released on C:\Users\n0251281\AppData\Local\Snowflake\Caches\ocsp_cache.lock +DEBUG:snowflake.connector.ocsp_snowflake:cache directory: C:\Users\n0251281\AppData\Local\Snowflake\Caches +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 0 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:reading certificate bundle: D:\Python310\lib\site-packages\certifi\cacert.pem +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=a07e8e1b-41ac-43c0-9e77-08ca3d5ae6e6&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=5aecfa2e-238f-4e5d-968d-cacc46e1496f HTTP/1.1" 200 1548 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_DEV_QLIK_PM_EDW_TRANS_D, database=PL_DEV, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_DEV_QLIK_LOAD_WH, role=None, request_id=40d55f70-31eb-47b9-9284-51c158a752b5 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_DEV_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d37f23d5-c617-4364-a64f-ed9a3899f489 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=40d55f70-31eb-47b9-9284-51c158a752b5&databaseName=PL_DEV&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_DEV_QLIK_LOAD_WH&request_guid=d37f23d5-c617-4364-a64f-ed9a3899f489 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[generated in 0.00206s] ('sqlite_ddl', 1, 0) +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: 6b124cbc-8ffc-4eae-bc7f-bcb92e4bfe7f +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: c3220a95-3f17-4440-a90c-04ff70dfc393 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6b124cbc-8ffc-4eae-bc7f-bcb92e4bfe7f&request_guid=c3220a95-3f17-4440-a90c-04ff70dfc393 HTTP/1.1" 200 2279 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83952-0502-afee-1a4b-0303c5ea4907 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83952-0502-afee-1a4b-0303c5ea4907 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83952-0502-afee-1a4b-0303c5ea4907' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: db891a40-8bf9-477e-9f19-0f7606cfd1fd +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83952-0502-afee-1a4b-0303c5ea4907?request_guid=db891a40-8bf9-477e-9f19-0f7606cfd1fd HTTP/1.1" 200 1875 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83952-0502-afee-1a4b-0303c5ea4907' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: ba5ce96f-396a-4e4a-b9f7-5827c2324438 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83952-0502-afee-1a4b-0303c5ea4907?request_guid=ba5ce96f-396a-4e4a-b9f7-5827c2324438 HTTP/1.1" 200 1875 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83952-0502-afee-1a4b-0303c5ea4907'))] +DEBUG:snowflake.connector.connection:sequence counter: 2 +DEBUG:snowflake.connector.cursor:Request id: b0e0ab9f-6d08-4ab2-ba2f-22a921a8fe64 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83952-0502-afee-1a4b-0303c5ea4907'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83952-0502-afee-1a4b-0303c5ea4907'))], sequence_id=[2], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 175a03aa-d83f-4846-bc3b-547eae422829 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=b0e0ab9f-6d08-4ab2-ba2f-22a921a8fe64&request_guid=175a03aa-d83f-4846-bc3b-547eae422829 HTTP/1.1" 200 2280 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83952-0502-ae87-1a4b-0303c5ea589b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83952-0502-ae87-1a4b-0303c5ea589b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 39 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 8 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 8, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 7 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 5 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 3 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 6, rows in current batch: 10 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 7, rows in current batch: 4 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.connection:sequence counter: 3 +DEBUG:snowflake.connector.cursor:Request id: eb18d313-c828-4289-96d5-616c9afff6f3 +DEBUG:snowflake.connector.cursor:running query [select column_name from information_schema.columns where table_schema = 'PM_EDW_...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select column_name from information_schema.columns where table_schema = 'PM_EDW_...], sequence_id=[3], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 2009aabe-e7cc-4f3e-ac3e-867484f10cd2 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=eb18d313-c828-4289-96d5-616c9afff6f3&request_guid=2009aabe-e7cc-4f3e-ac3e-867484f10cd2 HTTP/1.1" 200 1798 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83952-0502-af26-1a4b-0303c5ea3c4b +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83952-0502-af26-1a4b-0303c5ea3c4b +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83952-0502-af26-1a4b-0303c5ea3c4b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 038b884b-b089-447d-9315-4ddb2166e348 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83952-0502-af26-1a4b-0303c5ea3c4b?request_guid=038b884b-b089-447d-9315-4ddb2166e348 HTTP/1.1" 200 2167 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83952-0502-af26-1a4b-0303c5ea3c4b' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: d2001402-613a-470d-9642-a0246e352a6e +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83952-0502-af26-1a4b-0303c5ea3c4b?request_guid=d2001402-613a-470d-9642-a0246e352a6e HTTP/1.1" 200 2168 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83952-0502-af26-1a4b-0303c5ea3c4b'))] +DEBUG:snowflake.connector.connection:sequence counter: 4 +DEBUG:snowflake.connector.cursor:Request id: 13c3c1fe-f25d-499d-bd1f-62bc80116066 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83952-0502-af26-1a4b-0303c5ea3c4b'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83952-0502-af26-1a4b-0303c5ea3c4b'))], sequence_id=[4], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 84440aac-b858-4d59-b172-7ef7f159cb2d +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=13c3c1fe-f25d-499d-bd1f-62bc80116066&request_guid=84440aac-b858-4d59-b172-7ef7f159cb2d HTTP/1.1" 200 1796 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83952-0502-b0de-1a4b-0303c5ea2e37 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83952-0502-b0de-1a4b-0303c5ea2e37 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 10 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 6 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 6, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 1, rows in current batch: 4 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 2, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 3, rows in current batch: 2 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 4, rows in current batch: 1 +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 5, rows in current batch: 1 +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.connection:sequence counter: 5 +DEBUG:snowflake.connector.cursor:Request id: 31d2efc3-355e-4d35-8f77-5b89700339dc +DEBUG:snowflake.connector.cursor:running query [SELECT get_ddl('TABLE','STG_CEM_EVENT');] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT get_ddl('TABLE','STG_CEM_EVENT');], sequence_id=[5], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 54e2b5d0-6d69-4b51-97f4-e216f4eeafb0 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=31d2efc3-355e-4d35-8f77-5b89700339dc&request_guid=54e2b5d0-6d69-4b51-97f4-e216f4eeafb0 HTTP/1.1" 200 2285 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83952-0502-af26-1a4b-0303c5ea3c6f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83952-0502-af26-1a4b-0303c5ea3c6f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83952-0502-af26-1a4b-0303c5ea3c6f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 246f00ac-1a97-4af2-8dea-3cf6fd711fae +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83952-0502-af26-1a4b-0303c5ea3c6f?request_guid=246f00ac-1a97-4af2-8dea-3cf6fd711fae HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.connection:get_query_status sf_qid='01a83952-0502-af26-1a4b-0303c5ea3c6f' +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: de01516a-277d-49d8-a640-f3819ebf08a1 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "GET /monitoring/queries/01a83952-0502-af26-1a4b-0303c5ea3c6f?request_guid=de01516a-277d-49d8-a640-f3819ebf08a1 HTTP/1.1" 200 1678 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [select * from table(result_scan('01a83952-0502-af26-1a4b-0303c5ea3c6f'))] +DEBUG:snowflake.connector.connection:sequence counter: 6 +DEBUG:snowflake.connector.cursor:Request id: 6899f91b-3911-45f3-abb9-62fae220be85 +DEBUG:snowflake.connector.cursor:running query [select * from table(result_scan('01a83952-0502-af26-1a4b-0303c5ea3c6f'))] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[select * from table(result_scan('01a83952-0502-af26-1a4b-0303c5ea3c6f'))], sequence_id=[6], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: 715b34e3-a6b7-4679-9058-16d6f1acc842 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=6899f91b-3911-45f3-abb9-62fae220be85&request_guid=715b34e3-a6b7-4679-9058-16d6f1acc842 HTTP/1.1" 200 2287 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.network:Query id: 01a83952-0502-afee-1a4b-0303c5ea497f +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83952-0502-afee-1a4b-0303c5ea497f +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:SUCCESS +DEBUG:snowflake.connector.cursor:PUT OR GET: None +DEBUG:snowflake.connector.cursor:Query result format: arrow +INFO:snowflake.connector.cursor:Number of results in first chunk: 1 +DEBUG:snowflake.connector.arrow_iterator:Batches read: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow BatchSize: 1 +DEBUG:snowflake.connector.CArrowIterator:Arrow chunk info: batchCount 1, columnCount 1, use_numpy: 0 +DEBUG:snowflake.connector.result_set:beginning to schedule result batch downloads +DEBUG:snowflake.connector.CArrowIterator:Current batch index: 0, rows in current batch: 1 +INFO:sqlalchemy.engine.Engine:SELECT queries.id AS queries_id, queries.keyname AS queries_keyname, queries.valuename AS queries_valuename +FROM queries +WHERE queries.keyname = ? + LIMIT ? OFFSET ? +INFO:sqlalchemy.engine.Engine:[cached since 18.17s ago] ('get_data', 1, 0) +INFO:snowflake.connector.connection:Snowflake Connector for Python Version: 2.8.1, Python Version: 3.10.4, Platform: Windows-10-10.0.19042-SP0 +DEBUG:snowflake.connector.connection:connect +DEBUG:snowflake.connector.connection:__config +INFO:snowflake.connector.connection:This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity. +DEBUG:snowflake.connector.converter:use_numpy: False +DEBUG:snowflake.connector.converter_issue23517:initialized +DEBUG:snowflake.connector.connection:REST API object was created: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.auth:authenticate +DEBUG:snowflake.connector.auth:assertion content: ********* +DEBUG:snowflake.connector.auth:account=libertymutual_grm_us_edw, user=PL_QA_QLIK_PM_EDW_TRANS_D, database=PL_QA, schema=PM_EDW_TRANS_QLIK_CT_D, warehouse=PL_QA_QLIK_LOAD_WH, role=None, request_id=6d315f19-72b9-4677-85df-16e401f427d1 +DEBUG:snowflake.connector.auth:body['data']: {'CLIENT_APP_ID': 'PythonConnector', 'CLIENT_APP_VERSION': '2.8.1', 'SVN_REVISION': None, 'ACCOUNT_NAME': 'libertymutual_grm_us_edw', 'LOGIN_NAME': 'PL_QA_QLIK_PM_EDW_TRANS_D', 'CLIENT_ENVIRONMENT': {'APPLICATION': 'PythonConnector', 'OS': 'Windows', 'OS_VERSION': 'Windows-10-10.0.19042-SP0', 'PYTHON_VERSION': '3.10.4', 'PYTHON_RUNTIME': 'CPython', 'PYTHON_COMPILER': 'MSC v.1929 64 bit (AMD64)', 'OCSP_MODE': 'FAIL_OPEN', 'TRACING': 10, 'LOGIN_TIMEOUT': 120, 'NETWORK_TIMEOUT': None}, 'SESSION_PARAMETERS': {'CLIENT_PREFETCH_THREADS': 4}} +DEBUG:snowflake.connector.auth:Timeout set to 120 +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.vendored.urllib3.util.retry:Converted retries value: 1 -> Retry(total=1, connect=None, read=None, redirect=None, status=None) +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: 120, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: a8cd430c-0154-41b3-8da3-9d2966745650 +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:Starting new HTTPS connection (1): libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 +DEBUG:snowflake.connector.ssl_wrap_socket:OCSP Mode: FAIL_OPEN, OCSP response cache file name: None +DEBUG:snowflake.connector.ocsp_snowflake:ocsp_response_cache_uri: file://C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP_VALIDATION_CACHE size: 198 +DEBUG:snowflake.connector.ocsp_snowflake:OCSP response cache server is enabled: http://ocsp.snowflakecomputing.com/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:OCSP dynamic cache server RETRY URL: None +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-01-15 00:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2022-11-14 15:50:07+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 16:47:06+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-05-12 23:58:59+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-07-15 15:48:31+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:Read OCSP response cache file: C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json, count=198 +DEBUG:snowflake.connector.ocsp_snowflake:validating certificate: libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com +DEBUG:snowflake.connector.ocsp_asn1crypto:# of certificates: 4 +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]), issuer: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]), issuer: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:not found issuer_der: OrderedDict([('country_name', 'US'), ('organization_name', 'Starfield Technologies, Inc.'), ('organizational_unit_name', 'Starfield Class 2 Certification Authority')]) +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('common_name', '*.us-east-1.snowflakecomputing.com')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:41:06+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('organizational_unit_name', 'Server CA 1B'), ('common_name', 'Amazon')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2025-09-15 19:45:34+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('organization_name', 'Amazon'), ('common_name', 'Amazon Root CA 1')]) +DEBUG:snowflake.connector.ocsp_asn1crypto:Verifying the attached certificate is signed by the issuer. Valid Not After: 2023-06-22 07:00:00+00:00 +DEBUG:snowflake.connector.ocsp_snowflake:hit cache for subject: OrderedDict([('country_name', 'US'), ('state_or_province_name', 'Arizona'), ('locality_name', 'Scottsdale'), ('organization_name', 'Starfield Technologies, Inc.'), ('common_name', 'Starfield Services Root Certificate Authority - G2')]) +DEBUG:snowflake.connector.ocsp_snowflake:writing OCSP response cache file to C:/Users/n0251281/AppData/Local/Snowflake/Caches/ocsp_response_cache.json +DEBUG:snowflake.connector.ocsp_snowflake:encoding OCSP response cache to JSON +DEBUG:snowflake.connector.ocsp_snowflake:ok +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /session/v1/login-request?request_id=6d315f19-72b9-4677-85df-16e401f427d1&databaseName=PL_QA&schemaName=PM_EDW_TRANS_QLIK_CT_D&warehouse=PL_QA_QLIK_LOAD_WH&request_guid=a8cd430c-0154-41b3-8da3-9d2966745650 HTTP/1.1" 200 1550 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = None, after post request +DEBUG:snowflake.connector.auth:completed authentication +DEBUG:snowflake.connector.auth:token = ****** +DEBUG:snowflake.connector.auth:master_token = ****** +DEBUG:snowflake.connector.auth:id_token = NULL +DEBUG:snowflake.connector.auth:mfa_token = NULL +DEBUG:snowflake.connector.connection:cursor +DEBUG:snowflake.connector.cursor:executing SQL/command +INFO:snowflake.connector.cursor:query: [SELECT EVENT_DTM,header_change_mask,header_change_oper,ODS_EXP_ROW_DTM,EVENT_CD,...] +DEBUG:snowflake.connector.connection:sequence counter: 1 +DEBUG:snowflake.connector.cursor:Request id: a23f0d71-ce63-4758-924a-c0f30a30b410 +DEBUG:snowflake.connector.cursor:running query [SELECT EVENT_DTM,header_change_mask,header_change_oper,ODS_EXP_ROW_DTM,EVENT_CD,...] +DEBUG:snowflake.connector.cursor:is_file_transfer: False +DEBUG:snowflake.connector.cursor:Failed to set SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.connection:_cmd_query +DEBUG:snowflake.connector.connection:sql=[SELECT EVENT_DTM,header_change_mask,header_change_oper,ODS_EXP_ROW_DTM,EVENT_CD,...], sequence_id=[1], is_file_transfer=[False] +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 1/1 active sessions +DEBUG:snowflake.connector.network:remaining request timeout: None, retry cnt: 1 +DEBUG:snowflake.connector.network:Request guid: f492fb8b-a994-4f3d-ba9c-3801bdde5e0c +DEBUG:snowflake.connector.network:socket timeout: 60 +DEBUG:snowflake.connector.vendored.urllib3.connectionpool:https://libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com:443 "POST /queries/v1/query-request?requestId=a23f0d71-ce63-4758-924a-c0f30a30b410&request_guid=f492fb8b-a994-4f3d-ba9c-3801bdde5e0c HTTP/1.1" 200 387 +DEBUG:snowflake.connector.network:SUCCESS +DEBUG:snowflake.connector.network:Session status for SessionPool 'libertymutual_grm_us_edw.us-east-1.snowflakecomputing.com', SessionPool 0/1 active sessions +DEBUG:snowflake.connector.network:ret[code] = 000904, after post request +DEBUG:snowflake.connector.network:Query id: 01a83952-0502-b0de-1a4b-0303c5ea81c3 +DEBUG:snowflake.connector.cursor:Failed to reset SIGINT handler. Not in main thread. Ignored... +DEBUG:snowflake.connector.cursor:sfqid: 01a83952-0502-b0de-1a4b-0303c5ea81c3 +INFO:snowflake.connector.cursor:query execution done +DEBUG:snowflake.connector.cursor:{'data': {'internalError': False, 'errorCode': '000904', 'age': 0, 'sqlState': '42000', 'queryId': '01a83952-0502-b0de-1a4b-0303c5ea81c3', 'line': -1, 'pos': -1, 'type': 'COMPILATION'}, 'code': '000904', 'message': "SQL compilation error: error line 1 at position 17\ninvalid identifier 'HEADER_CHANGE_MASK'", 'success': False, 'headers': None} +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:38:22] "GET /sfexec?csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&csrf_token=IjYzYTE5M2M2MTdmZGJjMDJlNzJmNTMyNDdkOGE1ZWU0MDg3MmU1YmEi.Y21Ysg.NatmJFPs-Lg37caq2iYcLOvTz9s&submit=Submit HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:38:22] "GET /sfexec?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:38:22] "GET /sfexec?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:38:22] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [10/Nov/2022 16:38:23] "GET /sfexec?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - diff --git a/work/recovery-ui/recovery/extensions.py b/work/recovery-ui/recovery/extensions.py new file mode 100644 index 0000000..9291abd --- /dev/null +++ b/work/recovery-ui/recovery/extensions.py @@ -0,0 +1,12 @@ +from flask_debugtoolbar import DebugToolbarExtension +from flask_mail import Mail +from flask_wtf.csrf import CSRFProtect +from flask_sqlalchemy import SQLAlchemy +from flask_login import LoginManager +from flask_session import Session +debug_toolbar = DebugToolbarExtension() +mail = Mail() +csrf = CSRFProtect() +db = SQLAlchemy() +login_manager = LoginManager() +session = Session() diff --git a/work/recovery-ui/recovery/lib/__pycache__/fconfig.cpython-310.pyc b/work/recovery-ui/recovery/lib/__pycache__/fconfig.cpython-310.pyc new file mode 100644 index 0000000..b39bae2 Binary files /dev/null and b/work/recovery-ui/recovery/lib/__pycache__/fconfig.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/lib/common/__init__.py b/work/recovery-ui/recovery/lib/common/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/work/recovery-ui/recovery/lib/common/__pycache__/__init__.cpython-310.pyc b/work/recovery-ui/recovery/lib/common/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000..bc138d5 Binary files /dev/null and b/work/recovery-ui/recovery/lib/common/__pycache__/__init__.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/lib/common/__pycache__/connecter.cpython-310.pyc b/work/recovery-ui/recovery/lib/common/__pycache__/connecter.cpython-310.pyc new file mode 100644 index 0000000..4dfbaf3 Binary files /dev/null and b/work/recovery-ui/recovery/lib/common/__pycache__/connecter.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/lib/common/connecter.py b/work/recovery-ui/recovery/lib/common/connecter.py new file mode 100644 index 0000000..9d62d4a --- /dev/null +++ b/work/recovery-ui/recovery/lib/common/connecter.py @@ -0,0 +1,98 @@ +""" +Licensed 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. +""" + +import sqlite3 +from base64 import b64decode + +import psycopg2 +from snowflake import connector + + +class Connecter(object): + def __init__(self): + self.cobject = [] + + def connect(self, sfparams): + account = sfparams[0] + user = sfparams[1] + pw = bytes(sfparams[2], "UTF8") + npw = b64decode(pw).decode("UTF8") + password = npw + warehouse = sfparams[3] + database = sfparams[4] + schema = sfparams[5] + try: + conn = connector.connect( + user=user, + password=password, + account=account, + warehouse=warehouse, + database=database, + schema=schema, + ) + conn._paramstyle = "qmark" + except Exception as e: + print(f"Unable to connect to schema: {database}.{schema}:") + print(str(e)) + else: + print(f"Connected to {database}.{schema} in warehouse: {warehouse}.") + return (database, schema, conn) + + def sfrecover(self, sfparams): + account = sfparams[0] + user = sfparams[1] + pw = bytes(sfparams[2], "UTF8") + npw = b64decode(pw).decode("UTF8") + password = npw + warehouse = sfparams[3] + database = sfparams[4] + schema = sfparams[5] + try: + conn = connector.connect( + user=user, + password=password, + account=account, + warehouse=warehouse, + database=database, + schema=schema, + ) + conn._paramstyle = "qmark" + except Exception as e: + print(f"Unable to connect to schema: {database}.{schema}:") + print(str(e)) + else: + print(f"Connected to {database}.{schema} in warehouse: {warehouse}.") + return conn + + def open_sqlite(self, dbfile): + utilconn = sqlite3.connect(dbfile) + utilcur = utilconn.cursor() + return (utilconn, utilcur) + + def open_pgsql(self, schema): + try: + conn = psycopg2.connect( + dbname='recovery', + user='postgres', + host='postgres', + password='Optimus0329', + options=f'-c search_path={schema}' + ) + cur = conn.cursor() + return (conn, cur) + except: + print(f"Unable to connect to the database") + + def __del__(self): + pass diff --git a/work/recovery-ui/recovery/lib/config/Reader.py b/work/recovery-ui/recovery/lib/config/Reader.py new file mode 100644 index 0000000..0a001a2 --- /dev/null +++ b/work/recovery-ui/recovery/lib/config/Reader.py @@ -0,0 +1,111 @@ +""" +Licensed 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. +""" + +import configparser +from base64 import b64decode +from encodings import utf_8 +from datetime import datetime + + +class reader: + def __init__(self): + self.CONFIG = configparser.RawConfigParser(allow_no_value=True) + self.options = [] + self.parameters = {} + + def retrieve(self, filename, session): + self.CONFIG.read(filename) + self.parameters["startdate"] = session["startdate"] + self.parameters["enddate"] = session["enddate"] + if session["startdate"] == session["enddate"]: + self.parameters["use_daterange"] = 0 + else: + self.parameters["use_daterange"] = 1 + self.sf_logins = {} + # for option, value in self.CONFIG.items("sf_targets"): + # loginname = option + # itemlist = value.split(",") + # pw = bytes(itemlist[2], "UTF8") + # npw = b64decode(pw).decode("UTF8") + # self.sf_logins[loginname] = ( + # loginname, + # [itemlist[0], itemlist[1], npw, itemlist[3], itemlist[4], itemlist[5]], + # ) + # self.parameters["logins"] = self.sf_logins + self.parameters["exclude_list"] = self.CONFIG.get("global", "exclude_list") + self.parameters["allcolumn_query"] = self.CONFIG.get( + "query_template", "get_all_columns" + ) + self.parameters["datacolumn_query"] = self.CONFIG.get( + "query_template", "get_data_columns" + ) + self.parameters["minus_query"] = self.CONFIG.get( + "query_template", "minus_query" + ) + self.parameters["get_fromddl"] = self.CONFIG.get( + "query_template", "get_fromddl" + ) + self.parameters["get_tablelist"] = self.CONFIG.get( + "query_template", "get_tablelist" + ) + self.parameters["get_data"] = self.CONFIG.get("query_template", "get_data") + self.parameters["get_daterange"] = self.CONFIG.get( + "query_template", "get_daterange" + ) + self.parameters["qlik_columns"] = self.CONFIG.get("global", "qlik_columns") + self.parameters["full_qlik_columns"] = self.CONFIG.get( + "global", "full_qlik_columns" + ) + self.parameters["gg_columns"] = self.CONFIG.get("global", "gg_columns") + self.parameters["mssql_gg_columns"] = self.CONFIG.get( + "global", "mssql_gg_columns" + ) + self.parameters["fromenv"] = self.CONFIG.get("sync_direction", "FROMENV") + self.parameters["toenv"] = self.CONFIG.get("sync_direction", "TOENV") + self.parameters["utilitydb"] = self.CONFIG.get("global", "utilitydb") + impactedtables = [] + for option, value in self.CONFIG.items("impacted_tables"): + impactedtables.append(option.upper()) + self.parameters["impacted_tables"] = impactedtables + self.parameters["log_table"] = self.CONFIG.items("log_table") + self.parameters["populate_recoverytable"] = self.CONFIG.get( + "query_template", "populate_recoverytable" + ) + self.parameters["fromdatafile"] = self.CONFIG.get("global", "fromdata") + self.parameters["todatafile"] = self.CONFIG.get("global", "todata") + self.parameters["recovereddatafile"] = self.CONFIG.get( + "global", "recovereddata" + ) + now = datetime.now() + currenttime = now.strftime("%m%d%Y_%H%M%S") + self.parameters["sqlitedb"] = "./data/recovery_" + currenttime + ".sqlite3" + self.parameters["logfile"] = "./logs/recovery_" + currenttime + ".log" + if "PL_PROD" in self.parameters["fromenv"].upper(): + self.parameters["sourceenv"] = "PROD" + elif "PL_QA" in self.parameters["fromenv"].upper(): + self.parameters["sourceenv"] = "QA" + else: + self.parameters["sourceenv"] = "DEV" + + if "PL_PROD" in self.parameters["toenv"].upper(): + self.parameters["targetenv"] = "PROD" + elif "PL_QA" in self.parameters["toenv"].upper(): + self.parameters["targetenv"] = "QA" + else: + self.parameters["targetenv"] = "DEV" + + return self.parameters + + def __del__(self): + pass diff --git a/work/recovery-ui/recovery/lib/config/__init__.py b/work/recovery-ui/recovery/lib/config/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/work/recovery-ui/recovery/lib/config/__pycache__/Reader.cpython-310.pyc b/work/recovery-ui/recovery/lib/config/__pycache__/Reader.cpython-310.pyc new file mode 100644 index 0000000..18fcbeb Binary files /dev/null and b/work/recovery-ui/recovery/lib/config/__pycache__/Reader.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/lib/config/__pycache__/__init__.cpython-310.pyc b/work/recovery-ui/recovery/lib/config/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000..a1f92c3 Binary files /dev/null and b/work/recovery-ui/recovery/lib/config/__pycache__/__init__.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/lib/config/devconfig.sqlite3 b/work/recovery-ui/recovery/lib/config/devconfig.sqlite3 new file mode 100644 index 0000000..5427a3d Binary files /dev/null and b/work/recovery-ui/recovery/lib/config/devconfig.sqlite3 differ diff --git a/work/recovery-ui/recovery/lib/config/prodconfig.sqlite3 b/work/recovery-ui/recovery/lib/config/prodconfig.sqlite3 new file mode 100644 index 0000000..1e8c38e Binary files /dev/null and b/work/recovery-ui/recovery/lib/config/prodconfig.sqlite3 differ diff --git a/work/recovery-ui/recovery/lib/config/sampleconfig.sqlite3 b/work/recovery-ui/recovery/lib/config/sampleconfig.sqlite3 new file mode 100644 index 0000000..000fcc9 Binary files /dev/null and b/work/recovery-ui/recovery/lib/config/sampleconfig.sqlite3 differ diff --git a/work/recovery-ui/recovery/lib/config/sampleconfig.sqlite3.sql b/work/recovery-ui/recovery/lib/config/sampleconfig.sqlite3.sql new file mode 100644 index 0000000..e69de29 diff --git a/work/recovery-ui/recovery/lib/config/sync_settings.ini b/work/recovery-ui/recovery/lib/config/sync_settings.ini new file mode 100644 index 0000000..f6b3ead --- /dev/null +++ b/work/recovery-ui/recovery/lib/config/sync_settings.ini @@ -0,0 +1,119 @@ +[global] +mailhost = smtprelay.lmig.com +sender = Qlik_Admin@LibertyMutual.com +#receivers = HTTP_509@LibertyMutual.com, PMEDW_Prod_Support@LibertyMutual.com +receivers = Wendell.Jones@LibertyMutual.com +exclude_list = "'HEADER_CHANGE_SEQ','HEADER_CHANGE_OPER','HEADER_CHANGE_MASK','HEADER_STREAM_POSITION','HEADER_OPERATION','HEADER_TRANSACTION_ID','HEADER_TIMESTAMP','GG_PRC_OWNER','GG_SRC_SERVER','GG_CSN','GG_RSN','GG_REPLICAT','GG_EXTRACT','GG_XID','GG_CORRELATION_ID','GG_USER_ID','GG_FILESEQNO','GG_FILERBA','change_seq','change_oper','change_mask','stream_position','operation','transaction_id','timestamp','header_change_seq','header_change_oper','header_change_mask','header_stream_position','header_operation','header_transaction_id','header_timestamp','STG_PROCESS_DATE','ODS_EFF_ROW_DT','ODS_EXP_ROW_DTM','ODS_CDC_TRANS_TYPE','ODS_CREATE_ROW_DTM','ODS_CREATE_ROW_DT','ODS_ROW_PROCESS_DTM','ODS_SID','ODS_AUDIT_ID','ODS_EFF_ROW_DTM','ODS_EXP_ROW_DT','ROW_EXP_DT','ROW_EFF_DT'" +full_qlik_columns = HEADER_CHANGE_SEQ,HEADER_CHANGE_OPER,HEADER_CHANGE_MASK,HEADER_STREAM_POSITION,HEADER_OPERATION,HEADER_TRANSACTION_ID,HEADER_TIMESTAMP +# BELOW LINE LISTS QLIK COLUMNS ELIMINATING HEADER_CHANGE_MASK AS IT IS A BYTES COLUMN +qlik_columns = HEADER_CHANGE_SEQ,HEADER_CHANGE_OPER,HEADER_STREAM_POSITION,HEADER_OPERATION,HEADER_TRANSACTION_ID,HEADER_TIMESTAMP +gg_columns=GG_PRC_OWNER, GG_SRC_SERVER, GG_CSN, GG_RSN, GG_REPLICAT, GG_EXTRACT, GG_XID, GG_CORRELATION_ID, GG_USER_ID, GG_FILESEQNO, GG_FILERBA +mssql_gg_columns=ODS_CDC_TRANS_TYPE,ODS_EFF_ROW_DTM,ODS_CREATE_ROW_DTM,ODS_CREATE_ROW_DT,ODS_ROW_PROCESS_DTM,ODS_EFF_ROW_DT,GG_XID,GG_CORRELATION_ID,GG_USER_ID,GG_FILESEQNO,GG_FILERBA,ODS_EXP_ROW_DTM,ODS_SID,ODS_AUDIT_ID,ODS_EXP_ROW_DT +cleanup_tempdata=0 +# valid options for utility database are "snowflake" or "sqlite" +utilitydb=sqlite +fromdata = ./csv_files/from_data.csv +todata = ./csv_files/to_data.csv +recovereddata = ./csv_files/recovered_data.csv + +[log_table] +DEV=PL_DEV.PM_EDW_META_D.TRANS_RECOVER_LOG +QA=PL_QA.PM_EDW_META_D.TRANS_RECOVER_FROM_LOG +PROD=PL_PROD.PM_EDW_META_D.TRANS_RECOVER_FROM_LOG + +#Need all logins added here with passwords encrypted +[sf_targets] +PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D,dFdRNWdXeUM=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_CL_EPALARM_QLIK_CT_D +PL_DEV_QLIK_PM_TRANS_CL_ICREPO_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_CL_ICREPO_D,cDJTWldwQXE=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_CL_ICREPO_QLIK_CT_D +PL_DEV_QLIK_PM_TRANS_AVAYA_REPO_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_AVAYA_REPO_D,WjgzSm83QzQ=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_AVAYA_REPO_QLIK_CT_D +PL_DEV_QLIK_PM_ODS_VISION_D=PL_DEV,PL_DEV_QLIK_PM_ODS_VISION_D,NUgzWGFuVE0=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_ODS_VISION_QLIK_CT_D +PL_DEV_QLIK_PM_ODS_XTRNL_INCMNG_D=PL_DEV,PL_DEV_QLIK_PM_ODS_XTRNL_INCMNG_D,UGJaZ3FVeDU=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_ODS_XTRNL_INCMING_D +PL_DEV_QLIK_PM_TRANS_CMS_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_CMS_D,ZDdkODc0V1I=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_CMS_QLIK_CT_D +PL_DEV_QLIK_PM_TRANS_CL_EPCUST_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_CL_EPCUST_D,RXJRUjlZS0o=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_CL_EPCUST_QLIK_CT_D +PL_DEV_QLIK_PM_TRANS_AVAYA_CTIEMAIL_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_AVAYA_CTIEMAIL_D,SlR6VjBWaG0=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_AVAYA_CTIEMAIL_QLIK_CT_D +PL_DEV_QLIK_PM_TRANS_CL_OAHIST_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_CL_OAHIST_D,NlJ5eFhBNXE=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_CL_OAHIST_QLIK_CT_D +PL_DEV_QLIK_PM_TRANS_SALES_COMP_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_SALES_COMP_D,S3U4djJFUWI=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_SALES_COMP_QLIK_CT_D +PL_DEV_QLIK_PM_TRANS_CL_AB_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_CL_AB_D,aDdBSE9Vclc=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_CL_AB_ALT_QLIK_CT_D +PL_DEV_QLIK_PM_TRANS_VH_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_VH_D,Y0JVSHltOWU=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_VH_QLIK_CT_D +PL_DEV_QLIK_PM_ODS_FIN_FINX_D=PL_DEV,PL_DEV_QLIK_PM_ODS_FIN_FINX_D,VTZuWTdBR3k=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_ODS_FIN_FINX_QLIK_D +PL_DEV_QLIK_PM_ODS_VISION_TRANS_D=PL_DEV,PL_DEV_QLIK_PM_ODS_VISION_TRANS_D,ejY1S3RIZk0=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_ODS_VISION_TRANS_QLIK_CT_D +PL_DEV_QLIK_PM_EDW_TRANS_D=PL_DEV,PL_DEV_QLIK_PM_EDW_TRANS_D,TU5uSHE2WVA=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_EDW_TRANS_QLIK_CT_D +PL_DEV_QLIK_PM_TRANS_CTI_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_CTI_D,Um5IOEVLRmU=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_CTI_QLIK_CT_D +PL_DEV_QLIK_PM_EDW_TRANS_NRT_SD_D=PL_DEV,PL_DEV_QLIK_PM_EDW_TRANS_NRT_SD_D,UXBBaFd5Nno=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_EDW_TRANS_NRT_SD_QLIK_CT_D +PL_DEV_QLIK_PM_EDW_PSA_D=PL_DEV,PL_DEV_QLIK_PM_EDW_PSA_D,UWtDZzczNkg=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_EDW_PSA_D +PL_DEV_QLIK_PM_TRANS_CL_CC_PRL_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_CL_CC_PRL_D,S2o5OEVmWEo=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_CL_CC_PRL_QLIK_CT_D +PL_QA_QLIK_PM_EDW_PSA_D=PL_QA,PL_QA_QLIK_PM_EDW_PSA_D,cjlMUXRQRE4=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_EDW_PSA_D +PL_QA_QLIK_PM_EDW_TRANS_D=PL_QA,PL_QA_QLIK_PM_EDW_TRANS_D,T01JN3RDYko=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_EDW_TRANS_QLIK_CT_D +PL_QA_QLIK_PM_EDW_TRANS_NRT_SD_D=PL_QA,PL_QA_QLIK_PM_EDW_TRANS_NRT_SD_D,bTc5QjdTRmk=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_EDW_TRANS_NRT_SD_QLIK_CT_D +PL_QA_QLIK_PM_ODS_FIN_FINX_D=PL_QA,PL_QA_QLIK_PM_ODS_FIN_FINX_D,dXZhZE04OXk=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_ODS_FIN_FINX_QLIK_D +PL_QA_QLIK_PM_ODS_VISION_D=PL_QA,PL_QA_QLIK_PM_ODS_VISION_D,c3FoNVZ4R1Y=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_ODS_VISION_QLIK_CT_D,PM_ODS_VISION_QLIK_D +PL_QA_QLIK_PM_ODS_VISION_TRANS_D=PL_QA,PL_QA_QLIK_PM_ODS_VISION_TRANS_D,dndBSjQwSks=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_ODS_VISION_TRANS_QLIK_CT_D +PL_QA_QLIK_PM_ODS_XTRNL_INCMNG_D=PL_QA,PL_QA_QLIK_PM_ODS_XTRNL_INCMNG_D,Z0NSWGp0NVE=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_ODS_XTRNL_INCMING_D +PL_QA_QLIK_PM_TRANS_AVAYA_CTIEMAIL_D=PL_QA,PL_QA_QLIK_PM_TRANS_AVAYA_CTIEMAIL_D,VUcxZVJ4a00=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_AVAYA_CTIEMAIL_D +PL_QA_QLIK_PM_TRANS_AVAYA_REPO_D=PL_QA,PL_QA_QLIK_PM_TRANS_AVAYA_REPO_D,WVI2N2VlVWQ=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_AVAYA_REPO_QLIK_CT_D +PL_QA_QLIK_PM_TRANS_CL_AB_D=PL_QA,PL_QA_QLIK_PM_TRANS_CL_AB_D,aXI2WFFjYUQ=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CL_AB_QLIK_CT_D +PL_QA_QLIK_PM_TRANS_CL_CC_PRL_D=PL_QA,PL_QA_QLIK_PM_TRANS_CL_CC_PRL_D,WlE1alpGeXU=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CL_CC_PRL_QLIK_CT_D +PL_QA_ALT_QLIK_PM_TRANS_CL_CC_PRL_D=PL_QA,PL_QA_QLIK_PM_TRANS_CL_CC_PRL_D,WlE1alpGeXU=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CL_CC_ALT_QLIK_CT_D +PL_QA_QLIK_PM_TRANS_CL_EPALARM_D=PL_QA,PL_QA_QLIK_PM_TRANS_CL_EPALARM_D,YjZTbzFpSVE=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CL_EPALARM_QLIK_CT_D +PL_QA_QLIK_PM_TRANS_CL_EPCUST_D=PL_QA,PL_QA_QLIK_PM_TRANS_CL_EPCUST_D,VDZQU0hEeko=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CL_EPCUST_QLIK_CT_D +PL_QA_QLIK_PM_TRANS_CL_ICREPO_D=PL_QA,PL_QA_QLIK_PM_TRANS_CL_ICREPO_D,STZUNnFkMVA=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CL_ICREPO_QLIK_CT_D +PL_QA_QLIK_PM_TRANS_CL_OAHIST_D=PL_QA,PL_QA_QLIK_PM_TRANS_CL_OAHIST_D,QW1Id0oxQTM=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CL_OAHIST_QLIK_CT_D +PL_QA_QLIK_PM_TRANS_CMS_D=PL_QA,PL_QA_QLIK_PM_TRANS_CMS_D,bHFUenNMM1A=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CMS_QLIK_CT_D +PL_QA_QLIK_PM_TRANS_CTI_D=PL_QA,PL_QA_QLIK_PM_TRANS_CTI_D,SE5jSVNJSTE=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CTI_D +PL_QA_QLIK_PM_TRANS_SALES_COMP_D=PL_QA,PL_QA_QLIK_PM_TRANS_SALES_COMP_D,aER1cDRraVA=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_SALES_COMP_QLIK_CT_D +PL_QA_QLIK_PM_TRANS_VH_D=PL_QA,PL_QA_QLIK_PM_TRANS_VH_D,S0hxakxhOUQ=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_VH_QLIK_CT_D +PL_PROD_QLIK_PM_EDW_PSA_D=PL_PROD,PL_PROD_QLIK_PM_EDW_PSA_D,QVE0eEFkaEI=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_EDW_PSA_D +PL_PROD_QLIK_PM_EDW_TRANS_D=PL_PROD,PL_PROD_QLIK_PM_EDW_TRANS_D,bUR4MjV5Ulk=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_EDW_TRANS_QLIK_CT_D +PL_PROD_QLIK_PM_EDW_TRANS_NRT_SD_D=PL_PROD,PL_PROD_QLIK_PM_EDW_TRANS_NRT_SD_D,b1EzZFdTVHg=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_EDW_TRANS_NRT_SD_QLIK_CT_D +PL_PROD_QLIK_PM_ODS_FIN_FINX_D=PL_PROD,PL_PROD_QLIK_PM_ODS_FIN_FINX_D,aERweDNiaVg=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_ODS_FIN_FINX_QLIK_D +PL_PROD_QLIK_PM_ODS_VISION_D=PL_PROD,PL_PROD_QLIK_PM_ODS_VISION_D,U0tsOWpzVEU=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_ODS_VISION_QLIK_D +PL_PROD_QLIK_PM_ODS_VISION_TRANS_D=PL_PROD,PL_PROD_QLIK_PM_ODS_VISION_TRANS_D,aTZmMVB4TU8=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_ODS_VISION_TRANS_QLIK_CT_D +PL_PROD_QLIK_PM_ODS_XTRNL_INCMNG_D=PL_PROD,PL_PROD_QLIK_PM_ODS_XTRNL_INCMNG_D,eDh4RFlPQTc=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_ODS_XTRNL_INCMING_D +PL_PROD_QLIK_PM_TRANS_AVAYA_CTIEMAIL_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_AVAYA_CTIEMAIL_D,cnJacWxMTjE=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_AVAYA_CTIEMAIL_D +PL_PROD_QLIK_PM_TRANS_AVAYA_REPO_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_AVAYA_REPO_D,bjdQQWtvcm4=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_AVAYA_REPO_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_CL_AB_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CL_AB_D,bHc5RmRSTTI=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CL_AB_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_CL_CC_PRL_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CL_CC_PRL_D,YmdDYTRNWE8=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CL_CC_PRL_QLIK_CT_D +PL_PROD_ALT_QLIK_PM_TRANS_CL_CC_PRL_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CL_CC_PRL_D,YmdDYTRNWE8=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CL_CC_ALT_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D,cjlDbm12Yjg=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CL_EPALARM_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_CL_EPCUST_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CL_EPCUST_D,WjVqTDlySHU=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CL_EPCUST_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_CL_ICREPO_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CL_ICREPO_D,TTB6VTNVcGQ=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CL_ICREPO_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_CL_OAHIST_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CL_OAHIST_D,Tko5UlZRelc=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CL_OAHIST_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_CMS_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CMS_D,Wjd2OE9EaVc=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CMS_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_CTI_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CTI_D,RlFsU3N2QzY=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CTI_D +PL_PROD_QLIK_PM_TRANS_SALES_COMP_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_SALES_COMP_D,NnFNYjNydjA=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_SALES_COMP_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_VH_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_VH_D,bzQ3YWVaaEU=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_VH_QLIK_CT_D +IT_APP_NONPROD_QLIK=NONPROD_UTILITY,QLIK_U,UWx5Nzl5cW0=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,QLIK_U +IT_APP_PROD_QLIK=PROD_UTILITY,QLIK_U,UWxwNjV5aG0=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,QLIK_U + + +[query_template] +get_data_columns=select column_name from information_schema.columns where table_schema = 'r_impacted_tables.SCHEM' AND table_name = 'r_impacted_tables.TBL' and column_name not in (exclude_list); +get_all_columns=select column_name from information_schema.columns where table_schema = 'r_impacted_tables.SCHEM' AND table_name = 'r_impacted_tables.TBL'; +get_data=SELECT v_column_list FROM sfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL WHERE ODS_EFF_ROW_DT = 'startdate'; +get_daterange=SELECT v_column_list FROM sfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL WHERE ODS_EFF_ROW_DT >= 'startdate' AND ODS_EFF_ROW_DT <= 'enddate'; +minus_query=SELECT v_column_list FROM fromsfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL EXCEPT SELECT v_column_list FROM tosfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL; +get_fromddl = SELECT get_ddl('TABLE','impacted_schema.impacted_table'); +local_minus_query=SELECT v_column_list FROM fromsfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL MINUS SELECT v_column_list FROM tosfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL; +#populate_recoverytable=INSERT INTO recoverytable SELECT v_column_list FROM fromsfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL A, minustable B WHERE columnlist; +populate_recoverytable=SELECT v_column_list FROM fromsfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL A, minustable B WHERE columnlist; +populate_minustable = INSERT INTO minustable SELECT * from sourcetable where whereclause; +get_tablelist=select distinct(table_name) from information_schema.columns where table_schema = 'r_impacted_tables.SCHEM'; + +[sync_direction] +FROMENV=PL_PROD_ALT_QLIK_PM_TRANS_CL_CC_PRL_D +TOENV=PL_QA_ALT_QLIK_PM_TRANS_CL_CC_PRL_D +#FROMDB=PL_PROD +#TODB=PL_QA + +[impacted_schema] +#schema=PM_ODS_VISION_QLIK_D +startdate= 2022-04-19 +enddate= 2022-04-19 +use_daterange=1 + +[db2_schemas] + + +[impacted_tables] +#STG_VKX0500T +CC_CLAIMSNAPSHOT \ No newline at end of file diff --git a/work/recovery-ui/recovery/lib/fconfig.py b/work/recovery-ui/recovery/lib/fconfig.py new file mode 100644 index 0000000..b76e7c1 --- /dev/null +++ b/work/recovery-ui/recovery/lib/fconfig.py @@ -0,0 +1,29 @@ +""" +Licensed 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. +""" + + +class Config(object): + pass + + +class ProdConfig(Config): + SQLALCHEMY_TRACK_MODIFICATIONS = False + SQLALCHEMY_DATABASE_URI = "sqlite:///./config/prodconfig.sqlite3" + + +class DevConfig(Config): + DEBUG = True + SQLALCHEMY_ECHO = True + SQLALCHEMY_TRACK_MODIFICATIONS = True + SQLALCHEMY_DATABASE_URI = "sqlite:///./config/devconfig.sqlite3" diff --git a/work/recovery-ui/recovery/lib/flask_session/2029240f6d1128be89ddc32729463129 b/work/recovery-ui/recovery/lib/flask_session/2029240f6d1128be89ddc32729463129 new file mode 100644 index 0000000..ffb2cd9 Binary files /dev/null and b/work/recovery-ui/recovery/lib/flask_session/2029240f6d1128be89ddc32729463129 differ diff --git a/work/recovery-ui/recovery/lib/flask_session/5237bc358f133728241b9c024812d8ab b/work/recovery-ui/recovery/lib/flask_session/5237bc358f133728241b9c024812d8ab new file mode 100644 index 0000000..d4b79dc Binary files /dev/null and b/work/recovery-ui/recovery/lib/flask_session/5237bc358f133728241b9c024812d8ab differ diff --git a/work/recovery-ui/recovery/lib/flask_session/54384597304d57212682913bab3f2d73 b/work/recovery-ui/recovery/lib/flask_session/54384597304d57212682913bab3f2d73 new file mode 100644 index 0000000..769c1ea Binary files /dev/null and b/work/recovery-ui/recovery/lib/flask_session/54384597304d57212682913bab3f2d73 differ diff --git a/work/recovery-ui/recovery/lib/flask_session/92a19d3820cf9f946749504f472d1457 b/work/recovery-ui/recovery/lib/flask_session/92a19d3820cf9f946749504f472d1457 new file mode 100644 index 0000000..bce8c45 Binary files /dev/null and b/work/recovery-ui/recovery/lib/flask_session/92a19d3820cf9f946749504f472d1457 differ diff --git a/work/recovery-ui/recovery/lib/function/Outputter.py b/work/recovery-ui/recovery/lib/function/Outputter.py new file mode 100644 index 0000000..0f82a52 --- /dev/null +++ b/work/recovery-ui/recovery/lib/function/Outputter.py @@ -0,0 +1,40 @@ +""" +Licensed 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. +""" + + +class Output: + def __init__(self): + self.scoutput = self + + def process_table( + self, directional, sfenv, tablename, startdate, use_daterange, enddate + ): + if use_daterange == "0": + print( + f"Retreiving rows from {directional} table ({sfenv}) {tablename} from {startdate}." + ) + else: + print( + f"Retreiving rows from {directional} table ({sfenv}) {tablename} from {startdate} through {enddate}." + ) + + def display_rowcount(self, rowcount): + + print(f"{rowcount} rows received.") + + def output_status(self, message): + print(f"{message}") + + def __del__(self): + pass diff --git a/work/recovery-ui/recovery/lib/function/Reader.py b/work/recovery-ui/recovery/lib/function/Reader.py new file mode 100644 index 0000000..da1fa82 --- /dev/null +++ b/work/recovery-ui/recovery/lib/function/Reader.py @@ -0,0 +1,13 @@ +""" +Licensed 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. +""" diff --git a/work/recovery-ui/recovery/lib/function/Writer.py b/work/recovery-ui/recovery/lib/function/Writer.py new file mode 100644 index 0000000..5beccd8 --- /dev/null +++ b/work/recovery-ui/recovery/lib/function/Writer.py @@ -0,0 +1,185 @@ +""" +Licensed 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. +""" +import sqlite3 +import pandas as pd +import csv +import re +import os +import psycopg2 + +from sqlalchemy import over +from recovery.lib.overrides.Overrider import overrider + + +class csvwrite: + def __init__(self): + self.override = overrider() + + def create_csv(self, csvfilename, csvcolumns, csvresults): + csvcolumnlist = csvcolumns.upper().replace('"', "").split(",") + with open(csvfilename, "w", newline="", encoding="utf8") as f: + write = csv.writer(f, delimiter=",", quoting=csv.QUOTE_ALL) + write.writerow(csvcolumnlist) + write.writerows(csvresults) + f.close() + + def create_tables( + self, + utilconn, + utilcur, + fromconn, + toconn, + from_schema, + tableinfo, + getddl, + session, + ): + tablestatement = ( + getddl + .replace("create or replace TABLE", "CREATE TABLE") + .replace("BINARY(256)", "BYTEA") + .replace("BINARY(16000)", "BYTEA") + .replace("BINARY(7000)", "BYTEA") + .replace("BINARY(7168000)", "BYTEA") + .replace("NUMBER", "DECIMAL") + .replace("TIMESTAMP_NTZ", "TIMESTAMP") + .replace("'en-ci'", "pg_catalog.\"default\"") + .replace("\"", "") + ) + + sourcedb = session['sourcedb'] + targetdb = session['targetdb'] + + i = 0 + tableinfo = self.override.override_table(tableinfo, minustable_config=0) + table_ddls = {} + actualtable = tableinfo + fromtable = f"\"{from_schema}\".{sourcedb}_{tableinfo}" + totable = f"\"{from_schema}\".{targetdb}_{tableinfo}" + minustable = f"\"{from_schema}\".{tableinfo}_MINUSTABLE" + recovertable = f"\"{from_schema}\".RECOVERED_{tableinfo}" + data_columns = [] + all_columns = [] + exclude_columns = [] + + utilcur.execute(f"SELECT * FROM public.excluded_columns ORDER BY id ASC ;") + excluderesults = utilcur.fetchall() + for excludecolumn in excluderesults: + exclude_columns.append(excludecolumn[1]) + session['exclude_list'] = ",".join(exclude_columns) + + utilcur.execute(f"DROP TABLE IF EXISTS {fromtable};") + utilcur.execute(f"DROP TABLE IF EXISTS {totable};") + # utilcur.execute(f"DROP TABLE IF EXISTS {minustable};") + # utilcur.execute(f"DROP TABLE IF EXISTS {recovertable};") + utilconn.commit() + primary_key = "" + match = re.search( + r'primary key [_\(\)\w",\s]+', tablestatement, re.MULTILINE + ) + + if match: + result = match.group() + primary_key = result.replace("primary key (", "").replace(")", "") + else: + primary_key = "NOT DEFINED" + tempcreatetable = tablestatement.replace(f"CREATE TABLE {actualtable}",f"CREATE TABLE {fromtable}") + createtable = re.sub( + r'constraint\s[\w_]+\s', f"CONSTRAINT {sourcedb}_{tableinfo}_PKY " , tempcreatetable, flags=re.IGNORECASE + ) + i = i + 1 + utilcur.execute(createtable) + utilconn.commit() + tempcreatetable = tablestatement.replace(f"CREATE TABLE {actualtable}",f"CREATE TABLE {totable}") + createtable = re.sub( + r'constraint\s[\w_]+\s', f"CONSTRAINT {targetdb}_{tableinfo}_PKY " , tempcreatetable, flags=re.IGNORECASE + ) + i = i + 1 + utilcur.execute(createtable) + utilconn.commit() + tempcreatetable = tablestatement.replace(f"CREATE TABLE {actualtable}",f"CREATE TABLE {minustable}") + createtable1 = re.sub(" COLLATE pg_catalog.default", "", tempcreatetable, flags=re.IGNORECASE) + createtable2 = re.sub(r'constraint\s[\w_]+\s', "" , createtable1, flags=re.IGNORECASE) + createtable3 = re.sub(r'NOT NULL', "" , createtable2, flags=re.IGNORECASE) + createtable4 = re.sub(r'primary key\s[_\(\),\w\s]+', "" , createtable3, flags=re.IGNORECASE) + createtable5 = re.sub("ODS_AUDIT_ID DECIMAL(18,0),","ODS_AUDIT_ID DECIMAL(18,0))", createtable4, flags=re.IGNORECASE) + createtable6 = re.sub("LM_BESTTIMETOCONTACTCODE VARCHAR(40) COLLATE pg_catalog.default,", "LM_BESTTIMETOCONTACTCODE VARCHAR(40)", createtable5, flags=re.IGNORECASE).rstrip() + createtable = re.sub(";", ");", createtable6, flags=re.IGNORECASE).strip() + # try: + # utilcur.execute(createtable) + # except Exception as err: + # createtable4 = createtable3.replace("ODS_AUDIT_ID DECIMAL(18,0))", "ODS_AUDIT_ID DECIMAL(18,0),") + # createtable5 = createtable4.replace("ADMIN_X VARCHAR(1) COLLATE pg_catalog.default,", "ADMIN_X VARCHAR(1) COLLATE pg_catalog.default)") + # createtable6 = createtable5.replace("LM_BESTTIMETOCONTACTCODE VARCHAR(40) COLLATE pg_catalog.default,", "LM_BESTTIMETOCONTACTCODE VARCHAR(40) COLLATE pg_catalog.default").rstrip() + # createtable7 = createtable6.replace(" COLLATE pg_catalog.default", "") + # createtable8 = re.sub(r'primary key\s[_\(\),\w\s]+', "" , createtable7, flags=re.IGNORECASE) + # createtable = createtable8.replace(";", ");") + # utilcur.execute(createtable) + tempcreatetable = tablestatement.replace(f"CREATE TABLE {actualtable}",f"CREATE TABLE {recovertable}") + createtable1 = re.sub(r'constraint\s[\w_]+\s', "" , tempcreatetable, flags=re.IGNORECASE) + createtable2 = re.sub(r'NOT NULL', "" , createtable1, flags=re.IGNORECASE) + createtable3 = re.sub(r'primary key\s[_\(\),\w\s]+', "" , createtable2, flags=re.IGNORECASE) + createtable4 = createtable3.replace("ODS_AUDIT_ID DECIMAL(18,0),","ODS_AUDIT_ID DECIMAL(18,0))") + createtable = createtable4.replace(";", ");") + # utilcur.execute(createtable) + utilconn.commit() + + return ( + fromtable, + totable, + minustable, + recovertable, + ) + + def primary_whereclause(self, primary_key): + whereclause = "" + if "," in primary_key: + keyfield = primary_key.split(",") + whereclause = ( + "A." + + keyfield[0] + + " = B." + + keyfield[0] + + " AND A." + + keyfield[1] + + " = B." + + keyfield[1] + ) + else: + whereclause = "A." + primary_key + " = B." + primary_key + return whereclause + + def data_whereclause(self, data_columns): + whereclauselist = [] + whereclause = "" + for columnname in data_columns: + whereclauselist.append("A." + columnname + " = B." + columnname) + whereclause = ",".join(whereclauselist) + return whereclause + + def generate_impactedtables( + self, impacted_tables, from_database, to_database, schema + ): + table_ddl = [] + for tablename in impacted_tables: + table_ddl.append( + [ + tablename, + from_database + "_" + tablename, + to_database + "_" + tablename, + ] + ) + + def __del__(self): + pass diff --git a/work/recovery-ui/recovery/lib/function/__init__.py b/work/recovery-ui/recovery/lib/function/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/work/recovery-ui/recovery/lib/function/__pycache__/Outputter.cpython-310.pyc b/work/recovery-ui/recovery/lib/function/__pycache__/Outputter.cpython-310.pyc new file mode 100644 index 0000000..307f356 Binary files /dev/null and b/work/recovery-ui/recovery/lib/function/__pycache__/Outputter.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/lib/function/__pycache__/Writer.cpython-310.pyc b/work/recovery-ui/recovery/lib/function/__pycache__/Writer.cpython-310.pyc new file mode 100644 index 0000000..860a1cc Binary files /dev/null and b/work/recovery-ui/recovery/lib/function/__pycache__/Writer.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/lib/function/__pycache__/__init__.cpython-310.pyc b/work/recovery-ui/recovery/lib/function/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000..d1f1979 Binary files /dev/null and b/work/recovery-ui/recovery/lib/function/__pycache__/__init__.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/lib/function/__pycache__/pgfunctions.cpython-310.pyc b/work/recovery-ui/recovery/lib/function/__pycache__/pgfunctions.cpython-310.pyc new file mode 100644 index 0000000..57f0f78 Binary files /dev/null and b/work/recovery-ui/recovery/lib/function/__pycache__/pgfunctions.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/lib/function/models.py b/work/recovery-ui/recovery/lib/function/models.py new file mode 100644 index 0000000..d17bdbc --- /dev/null +++ b/work/recovery-ui/recovery/lib/function/models.py @@ -0,0 +1,96 @@ +""" +Licensed 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. +""" + + +class Settings(db.Model): + id = db.Column(db.Integer(), primary_key=True) + keyname = db.Column(db.String(128)) + valuename = db.Column(db.String(128)) + + def __init__(self, keyname, valuename): + self.keyname = keyname + self.valuename = valuename + + def __repr__(self): + return "".format(self.keyname, self.valuename) + + +class Targets(db.Model): + id = db.Column(db.Integer(), primary_key=True) + targetname = db.Column(db.String(128)) + username = db.Column(db.String(128)) + password = db.Column(db.String(128)) + account = db.Column(db.String(128)) + warehouse = db.Column(db.String(128)) + database = db.Column(db.String(128)) + schemaname = db.Column(db.String(128)) + + def __init__( + self, targetname, username, password, account, warehouse, database, schemaname + ): + self.targetname = targetname + self.username = username + self.password = password + self.account = account + self.warehouse = warehouse + self.database = database + self.schemaname = schemaname + + def __repr__(self): + return "".format( + self.targetname, + self.username, + self.password, + self.account, + self.warehouse, + self.database, + self.schemaname, + ) + + +class Queries(db.Model): + id = db.Column(db.Integer(), primary_key=True) + keyname = db.Column(db.String(128)) + valuename = db.Column(db.String(128)) + + def __init__(self, keyname, valuename): + self.keyname = keyname + self.valuename = valuename + + def __repr__(self): + return "".format(self.keyname, self.valuename) + + +class Sync_params(db.Model): + id = db.Column(db.Integer(), primary_key=True) + keyname = db.Column(db.String(128)) + valuename = db.Column(db.String(128)) + + def __init__(self, keyname, valuename): + self.keyname = keyname + self.valuename = valuename + + def __repr__(self): + return "".format(self.keyname, self.valuename) + + +class Excluded_columns(db.Model): + id = db.Column(db.Integer(), primary_key=True) + columnname = db.Column(db.String(128)) + + def __init__(self, columnname): + self.columnname = columnname + + def __repr__(self): + return "".format(self.columnname) diff --git a/work/recovery-ui/recovery/lib/function/pgfunctions.py b/work/recovery-ui/recovery/lib/function/pgfunctions.py new file mode 100644 index 0000000..07cc871 --- /dev/null +++ b/work/recovery-ui/recovery/lib/function/pgfunctions.py @@ -0,0 +1,190 @@ +import os +from io import StringIO + +import numpy as np +import pandas as pd +import psycopg2 +import psycopg2.extras as extras + + +def execute_many(conn, df, table): + """ + Using cursor.executemany() to insert the dataframe + """ + # Create a list of tupples from the dataframe values + tuples = [tuple(x) for x in df.to_numpy()] + # Comma-separated dataframe columns + cols = ','.join(list(df.columns)) + # SQL quert to execute + query = "INSERT INTO %s(%s) VALUES(%%s,%%s,%%s)" % (table, cols) + cursor = conn.cursor() + try: + cursor.executemany(query, tuples) + conn.commit() + except (Exception, psycopg2.DatabaseError) as error: + print("Error: %s" % error) + conn.rollback() + cursor.close() + return 1 + print("execute_many() done") + cursor.close() + + +def execute_batch(conn, table, df, page_size): + # csvdata = open(csvfile, 'r') + # newcvsfile = csvfile.replace('data', 'data_filtered') + # newcsvdata = open(newcvsfile, 'w') + # for line in csvdata: + # newline = line.replace("bytearray(b'\\xff\\xff\\xff\\x80')","").replace('"','') + # newcsvdata.write(newline.replace('""','')) + # csvdata.close() + # newcsvdata.close() + # df = pd.read_csv(newcvsfile, dtype=object, low_memory=False) + """ + Using psycopg2.extras.execute_batch() to insert the dataframe + """ + # Create a list of tupples from the dataframe values + tuples = [tuple(x) for x in df.to_numpy()] + # Comma-separated dataframe columns + cols = ','.join(list(df.columns)) + data = '' + for col in df.columns: + data = data + ',%%s' + rowdata = data[1:] + dynamicquery = f"INSERT INTO %s(%s) VALUES({rowdata})" + # SQL quert to execute + query = dynamicquery % (table, cols) + cursor = conn.cursor() + try: + extras.execute_batch(cursor, query, tuples, page_size) + conn.commit() + except (Exception, psycopg2.DatabaseError) as error: + print("Error: %s" % error) + conn.rollback() + cursor.close() + return 1 + print("execute_batch() done") + cursor.close() + + +def execute_values(conn, df, table): + """ + Using psycopg2.extras.execute_values() to insert the dataframe + """ + # Create a list of tupples from the dataframe values + tuples = [tuple(x) for x in df.to_numpy()] + # Comma-separated dataframe columns + cols = ','.join(list(df.columns)) + # SQL quert to execute + query = "INSERT INTO %s(%s) VALUES %%s" % (table, cols) + cursor = conn.cursor() + try: + extras.execute_values(cursor, query, tuples) + conn.commit() + except (Exception, psycopg2.DatabaseError) as error: + print("Error: %s" % error) + conn.rollback() + cursor.close() + return 1 + print("execute_values() done") + cursor.close() + + +def execute_mogrify(conn, df, table): + """ + Using cursor.mogrify() to build the bulk insert query + then cursor.execute() to execute the query + """ + # Create a list of tupples from the dataframe values + tuples = [tuple(x) for x in df.to_numpy()] + # Comma-separated dataframe columns + cols = ','.join(list(df.columns)) + # SQL quert to execute + cursor = conn.cursor() + values = [cursor.mogrify("(%s,%s,%s)", tup).decode('utf8') for tup in tuples] + query = "INSERT INTO %s(%s) VALUES " % (table, cols) + ",".join(values) + + try: + cursor.execute(query, tuples) + conn.commit() + except (Exception, psycopg2.DatabaseError) as error: + print("Error: %s" % error) + conn.rollback() + cursor.close() + return 1 + print("execute_mogrify() done") + cursor.close() + + +def copy_from_file(conn, df, table): + """ + Here we are going save the dataframe on disk as + a csv file, load the csv file + and use copy_from() to copy it to the table + """ + # Save the dataframe to disk + tmp_df = "./tmp_dataframe.csv" + df.to_csv(tmp_df, index_label='id', header=False) + f = open(tmp_df, 'r') + cursor = conn.cursor() + try: + cursor.copy_from(f, table, sep=",") + conn.commit() + except (Exception, psycopg2.DatabaseError) as error: + os.remove(tmp_df) + print("Error: %s" % error) + conn.rollback() + cursor.close() + return 1 + print("copy_from_file() done") + cursor.close() + os.remove(tmp_df) + + +def copy_from_stringio(conn, df, table): + """ + Here we are going save the dataframe in memory + and use copy_from() to copy it to the table + """ + # save dataframe to an in memory buffer + buffer = StringIO() + df.to_csv(buffer, index_label='id', header=False) + buffer.seek(0) + + cursor = conn.cursor() + try: + cursor.copy_from(buffer, table, sep=",") + conn.commit() + except (Exception, psycopg2.DatabaseError) as error: + print("Error: %s" % error) + conn.rollback() + cursor.close() + return 1 + print("copy_from_stringio() done") + cursor.close() + + +#---------------------------------------------------------------- +# SqlAlchemy Only +#---------------------------------------------------------------- +# from sqlalchemy import create_engine + +# connect = "postgresql+psycopg2://%s:%s@%s:5432/%s" % ( +# param_dic['user'], +# param_dic['password'], +# param_dic['host'], +# param_dic['database'] +# ) + +# def to_alchemy(df): +# """ +# Using a dummy table to test this call library +# """ +# engine = create_engine(connect) +# df.to_sql( +# 'test_table', +# con=engine, +# index=False, +# if_exists='replace' +# ) +# print("to_sql() done (sqlalchemy)") \ No newline at end of file diff --git a/work/recovery-ui/recovery/lib/logger/Logger.py b/work/recovery-ui/recovery/lib/logger/Logger.py new file mode 100644 index 0000000..20211df --- /dev/null +++ b/work/recovery-ui/recovery/lib/logger/Logger.py @@ -0,0 +1,109 @@ +""" +Licensed 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. +""" + +import logging +import logrotater +import time +import datetime +from datetime import datetime, timedelta, date +import os +from glob import glob +import math as m + + +class Logger: + def __init__(self): + pass + + def __del__(self): + pass + + +class lprint: + def __init__(self, filelog, forcerotate): + global ts + global logfile + with open(filelog, "a"): + os.utime(filelog, None) + logfilelist = glob("dbsync.log.*") + datelimit = datetime.today() - timedelta(days=14) + for i in logfilelist: + filestamp = os.path.getmtime(i) + timestamp = datetime.fromtimestamp(filestamp) + if timestamp < datelimit: + os.remove(i) + logfile = filelog + logSize = os.path.getsize(logfile) + if logSize > 0: + logfileSize = f"{logSize} ({self.humanbytes(logSize)})" + # logfileSize = str(logSize).encode() + try: + print("Logfile Size: " + str(logfileSize)) + except: + print("Logfile not present. Creating.") + self.startlog() + self.logprint("info", "Creating logfile.") + if forcerotate == True: + rotater = logrotater.LogRotate(prefix=logfile, verbose=True) + rotater.rotate() + elif logSize > 1000000: + rotater = logrotater.LogRotate(prefix=logfile, verbose=True) + rotater.rotate() + + def startlog(self): + logging.basicConfig(filename=logfile, level=logging.DEBUG) + + def logprint(self, loglevel, logmessage): + ts = time.time() + logstamp = datetime.fromtimestamp(int(ts)).strftime("%Y-%m-%d %H:%M:%S") + if loglevel.lower() == "debug": + logging.debug(str(logstamp) + ":" + logmessage) + elif loglevel.lower() == "warning": + logging.warn(str(logstamp) + ":" + logmessage) + elif loglevel.lower() == "info": + logging.info(str(logstamp) + ":" + logmessage) + + def create_rotating_log(self, logpath): + + """ + Creates a rotating log + """ + logger = logger.getLogger("Rotating Log") + logger.setLevel(logger.INFO) + + # add a rotating handler + # handler = RotatingFileHandler(logpath, maxBytes=config.get('global', 'statuslog_maxbytes'), + # backupCount=config.get('global', 'status_logretention')) + # logger.addHandler(handler) + + def humanbytes(self, i, binary=False, precision=2): + MULTIPLES = [ + "B", + "k{}B", + "M{}B", + "G{}B", + "T{}B", + "P{}B", + "E{}B", + "Z{}B", + "Y{}B", + ] + base = 1024 if binary else 1000 + multiple = m.trunc(m.log2(i) / m.log2(base)) + value = i / m.pow(base, multiple) + suffix = MULTIPLES[multiple].format("i" if binary else "") + return f"{value:.{precision}f} {suffix}" + + def __del__(self): + pass diff --git a/work/recovery-ui/recovery/lib/overrides/Overrider.py b/work/recovery-ui/recovery/lib/overrides/Overrider.py new file mode 100644 index 0000000..6f09417 --- /dev/null +++ b/work/recovery-ui/recovery/lib/overrides/Overrider.py @@ -0,0 +1,91 @@ +""" +Licensed 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. +""" + +import re + + +class overrider(object): + def __init__(self): + self.cobject = [] + + def override_table(self, orobject, minustable_config): + if orobject == "QUEUE": + orobject = "QUEUE_X" + if minustable_config == 1: + if "HEADER_CHANGE_MASK" in orobject: + tempstatement1 = re.sub( + r"HEADER_CHANGE_MASK[-,\s\w\(\)\'\n_\d]+HEADER_TIMESTAMP TIMESTAMP_NTZ\(6\) NOT NULL,", + "", + orobject, + flags=re.IGNORECASE, + ) + minusquery = "INSERT INTO minustable (HEADER_CHANGE_SEQ,HEADER_CHANGE_OPER,data_columns) SELECT HEADER_CHANGE_SEQ,HEADER_CHANGE_OPER,data_columns from sourcetable where whereclause;" + else: + orobject = re.sub( + r"CHANGE_MASK[-,\s\w\(\)\'\n_\d]+TIMESTAMP TIMESTAMP_NTZ\(6\) NOT NULL,", + "", + orobject, + flags=re.IGNORECASE, + ) + orobject = re.sub( + r'"CHANGE_MASK"[\"-,\s\w\(\)\'\n_\d]+"TIMESTAMP" TIMESTAMP_NTZ\(6\) ,', + "", + orobject, + flags=re.IGNORECASE, + ) + minusquery = "INSERT INTO minustable (CHANGE_SEQ,CHANGE_OPER,data_columns) SELECT CHANGE_SEQ,CHANGE_OPER,data_columns from sourcetable where whereclause;" + if "VKX" not in orobject: + orobject = re.sub( + r",\n\tSTG_ODS_CDC_TRANS_TYPE[,\s\w\(\)\'\n-]+primary", + ", primary", + orobject, + flags=re.IGNORECASE, + ) + orobject = re.sub( + r",\n\tODS_CDC_TRANS_TYPE[,\s\w\(\)\'\n-]+primary", + ", primary", + orobject, + flags=re.IGNORECASE, + ) + orobject = orobject.replace("primary key", " primary key") + orobject = orobject.replace("PRIMARY KEY", " PRIMARY KEY") + if minustable_config == 1: + return (orobject, minusquery) + else: + return orobject + + def override_column(self, orobject): + if "RECOVERED_LANGUAGECODE" in orobject or "LANGUAGE_CODE_MINUSTABLE": + orobject = orobject.replace("RECOVERED_LANGUAGECODE", "LANGUAGECODE ") + orobject = orobject.replace( + "LANGUAGECODE_MINUSTABLEVARCHAR", "LANGUAGECODE VARCHAR" + ) + orobject = orobject.replace( + ')"header_change_seq", "header_change_oper")', "" + ) + return orobject + + def override_ddl(self, orobject, actualtable, newtablename): + orobject = ( + orobject.replace("TABLE " + actualtable, "TABLE " + newtablename) + .replace(" COLLATE 'en-ci'", "") + .replace("\n\t", "") + .replace("\n", "") + .replace("create or replace TABLE", "CREATE TABLE IF NOT EXISTS") + .replace("NOT NULL", "") + ) + return orobject.upper() + + def __del__(self): + pass diff --git a/work/recovery-ui/recovery/lib/overrides/__init__.py b/work/recovery-ui/recovery/lib/overrides/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/work/recovery-ui/recovery/lib/overrides/__pycache__/Overrider.cpython-310.pyc b/work/recovery-ui/recovery/lib/overrides/__pycache__/Overrider.cpython-310.pyc new file mode 100644 index 0000000..54acc36 Binary files /dev/null and b/work/recovery-ui/recovery/lib/overrides/__pycache__/Overrider.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/lib/overrides/__pycache__/__init__.cpython-310.pyc b/work/recovery-ui/recovery/lib/overrides/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000..79db6c4 Binary files /dev/null and b/work/recovery-ui/recovery/lib/overrides/__pycache__/__init__.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/lib/settings/sync_settings.ini b/work/recovery-ui/recovery/lib/settings/sync_settings.ini new file mode 100644 index 0000000..f0dce2e --- /dev/null +++ b/work/recovery-ui/recovery/lib/settings/sync_settings.ini @@ -0,0 +1,121 @@ +[global] +mailhost = smtprelay.lmig.com +sender = Qlik_Admin@LibertyMutual.com +#receivers = HTTP_509@LibertyMutual.com, PMEDW_Prod_Support@LibertyMutual.com +receivers = Wendell.Jones@LibertyMutual.com +exclude_list = "'HEADER_CHANGE_SEQ','HEADER_CHANGE_OPER','HEADER_CHANGE_MASK','HEADER_STREAM_POSITION','HEADER_OPERATION','HEADER_TRANSACTION_ID','HEADER_TIMESTAMP','GG_PRC_OWNER','GG_SRC_SERVER','GG_CSN','GG_RSN','GG_REPLICAT','GG_EXTRACT','GG_XID','GG_CORRELATION_ID','GG_USER_ID','GG_FILESEQNO','GG_FILERBA','change_seq','change_oper','change_mask','stream_position','operation','transaction_id','timestamp','header_change_seq','header_change_oper','header_change_mask','header_stream_position','header_operation','header_transaction_id','header_timestamp','STG_PROCESS_DATE','ODS_EFF_ROW_DT','ODS_EXP_ROW_DTM','ODS_CDC_TRANS_TYPE','ODS_CREATE_ROW_DTM','ODS_CREATE_ROW_DT','ODS_ROW_PROCESS_DTM','ODS_SID','ODS_AUDIT_ID','ODS_EFF_ROW_DTM','ODS_EXP_ROW_DT','ROW_EXP_DT','ROW_EFF_DT'" +full_qlik_columns = HEADER_CHANGE_SEQ,HEADER_CHANGE_OPER,HEADER_CHANGE_MASK,HEADER_STREAM_POSITION,HEADER_OPERATION,HEADER_TRANSACTION_ID,HEADER_TIMESTAMP +# BELOW LINE LISTS QLIK COLUMNS ELIMINATING HEADER_CHANGE_MASK AS IT IS A BYTES COLUMN +qlik_columns = HEADER_CHANGE_SEQ,HEADER_CHANGE_OPER,HEADER_STREAM_POSITION,HEADER_OPERATION,HEADER_TRANSACTION_ID,HEADER_TIMESTAMP +gg_columns=GG_PRC_OWNER, GG_SRC_SERVER, GG_CSN, GG_RSN, GG_REPLICAT, GG_EXTRACT, GG_XID, GG_CORRELATION_ID, GG_USER_ID, GG_FILESEQNO, GG_FILERBA +mssql_gg_columns=ODS_CDC_TRANS_TYPE,ODS_EFF_ROW_DTM,ODS_CREATE_ROW_DTM,ODS_CREATE_ROW_DT,ODS_ROW_PROCESS_DTM,ODS_EFF_ROW_DT,GG_XID,GG_CORRELATION_ID,GG_USER_ID,GG_FILESEQNO,GG_FILERBA,ODS_EXP_ROW_DTM,ODS_SID,ODS_AUDIT_ID,ODS_EXP_ROW_DT +cleanup_tempdata=0 +# valid options for utility database are "snowflake" or "sqlite" +utilitydb=sqlite +fromdata = ./csv_files/from_data.csv +todata = ./csv_files/to_data.csv +recovereddata = ./csv_files/recovered_data.csv + +[log_table] +DEV=PL_DEV.PM_EDW_META_D.TRANS_RECOVER_LOG +QA=PL_QA.PM_EDW_META_D.TRANS_RECOVER_FROM_LOG +PROD=PL_PROD.PM_EDW_META_D.TRANS_RECOVER_FROM_LOG + +#Need all logins added here with passwords encrypted +[sf_targets] +PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D,dFdRNWdXeUM=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_CL_EPALARM_QLIK_CT_D +PL_DEV_QLIK_PM_TRANS_CL_ICREPO_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_CL_ICREPO_D,cDJTWldwQXE=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_CL_ICREPO_QLIK_CT_D +PL_DEV_QLIK_PM_TRANS_AVAYA_REPO_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_AVAYA_REPO_D,WjgzSm83QzQ=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_AVAYA_REPO_QLIK_CT_D +PL_DEV_QLIK_PM_ODS_VISION_D=PL_DEV,PL_DEV_QLIK_PM_ODS_VISION_D,NUgzWGFuVE0=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_ODS_VISION_QLIK_CT_D +PL_DEV_QLIK_PM_ODS_XTRNL_INCMNG_D=PL_DEV,PL_DEV_QLIK_PM_ODS_XTRNL_INCMNG_D,UGJaZ3FVeDU=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_ODS_XTRNL_INCMING_D +PL_DEV_QLIK_PM_TRANS_CMS_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_CMS_D,ZDdkODc0V1I=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_CMS_QLIK_CT_D +PL_DEV_QLIK_PM_TRANS_CL_EPCUST_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_CL_EPCUST_D,RXJRUjlZS0o=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_CL_EPCUST_QLIK_CT_D +PL_DEV_QLIK_PM_TRANS_AVAYA_CTIEMAIL_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_AVAYA_CTIEMAIL_D,SlR6VjBWaG0=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_AVAYA_CTIEMAIL_QLIK_CT_D +PL_DEV_QLIK_PM_TRANS_CL_OAHIST_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_CL_OAHIST_D,NlJ5eFhBNXE=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_CL_OAHIST_QLIK_CT_D +PL_DEV_QLIK_PM_TRANS_SALES_COMP_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_SALES_COMP_D,S3U4djJFUWI=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_SALES_COMP_QLIK_CT_D +PL_DEV_QLIK_PM_TRANS_CL_AB_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_CL_AB_D,aDdBSE9Vclc=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_CL_AB_ALT_QLIK_CT_D +PL_DEV_QLIK_PM_TRANS_VH_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_VH_D,Y0JVSHltOWU=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_VH_QLIK_CT_D +PL_DEV_QLIK_PM_ODS_FIN_FINX_D=PL_DEV,PL_DEV_QLIK_PM_ODS_FIN_FINX_D,VTZuWTdBR3k=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_ODS_FIN_FINX_QLIK_D +PL_DEV_QLIK_PM_ODS_VISION_TRANS_D=PL_DEV,PL_DEV_QLIK_PM_ODS_VISION_TRANS_D,ejY1S3RIZk0=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_ODS_VISION_TRANS_QLIK_CT_D +PL_DEV_QLIK_PM_EDW_TRANS_D=PL_DEV,PL_DEV_QLIK_PM_EDW_TRANS_D,TU5uSHE2WVA=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_EDW_TRANS_QLIK_CT_D +PL_DEV_QLIK_PM_TRANS_CTI_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_CTI_D,Um5IOEVLRmU=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_CTI_QLIK_CT_D +PL_DEV_QLIK_PM_EDW_TRANS_NRT_SD_D=PL_DEV,PL_DEV_QLIK_PM_EDW_TRANS_NRT_SD_D,UXBBaFd5Nno=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_EDW_TRANS_NRT_SD_QLIK_CT_D +PL_DEV_QLIK_PM_EDW_PSA_D=PL_DEV,PL_DEV_QLIK_PM_EDW_PSA_D,UWtDZzczNkg=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_EDW_PSA_D +PL_DEV_QLIK_PM_TRANS_CL_CC_PRL_D=PL_DEV,PL_DEV_QLIK_PM_TRANS_CL_CC_PRL_D,S2o5OEVmWEo=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,PM_TRANS_CL_CC_PRL_QLIK_CT_D +PL_QA_QLIK_PM_EDW_PSA_D=PL_QA,PL_QA_QLIK_PM_EDW_PSA_D,cjlMUXRQRE4=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_EDW_PSA_D +PL_QA_QLIK_PM_EDW_TRANS_D=PL_QA,PL_QA_QLIK_PM_EDW_TRANS_D,T01JN3RDYko=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_EDW_TRANS_QLIK_CT_D +PL_QA_QLIK_PM_EDW_TRANS_NRT_SD_D=PL_QA,PL_QA_QLIK_PM_EDW_TRANS_NRT_SD_D,bTc5QjdTRmk=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_EDW_TRANS_NRT_SD_QLIK_CT_D +PL_QA_QLIK_PM_ODS_FIN_FINX_D=PL_QA,PL_QA_QLIK_PM_ODS_FIN_FINX_D,dXZhZE04OXk=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_ODS_FIN_FINX_QLIK_D +PL_QA_QLIK_PM_ODS_VISION_D=PL_QA,PL_QA_QLIK_PM_ODS_VISION_D,c3FoNVZ4R1Y=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_ODS_VISION_QLIK_CT_D,PM_ODS_VISION_QLIK_D +PL_QA_QLIK_PM_ODS_VISION_TRANS_D=PL_QA,PL_QA_QLIK_PM_ODS_VISION_TRANS_D,dndBSjQwSks=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_ODS_VISION_TRANS_QLIK_CT_D +PL_QA_QLIK_PM_ODS_XTRNL_INCMNG_D=PL_QA,PL_QA_QLIK_PM_ODS_XTRNL_INCMNG_D,Z0NSWGp0NVE=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_ODS_XTRNL_INCMING_D +PL_QA_QLIK_PM_TRANS_AVAYA_CTIEMAIL_D=PL_QA,PL_QA_QLIK_PM_TRANS_AVAYA_CTIEMAIL_D,VUcxZVJ4a00=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_AVAYA_CTIEMAIL_D +PL_QA_QLIK_PM_TRANS_AVAYA_REPO_D=PL_QA,PL_QA_QLIK_PM_TRANS_AVAYA_REPO_D,WVI2N2VlVWQ=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_AVAYA_REPO_QLIK_CT_D +PL_QA_QLIK_PM_TRANS_CL_AB_D=PL_QA,PL_QA_QLIK_PM_TRANS_CL_AB_D,aXI2WFFjYUQ=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CL_AB_QLIK_CT_D +PL_QA_QLIK_PM_TRANS_CL_AB_ALT_D=PL_QA,PL_QA_QLIK_PM_TRANS_CL_AB_D,aXI2WFFjYUQ=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CL_AB_QLIK_ALT_CT_D +PL_QA_QLIK_PM_TRANS_CL_CC_PRL_D=PL_QA,PL_QA_QLIK_PM_TRANS_CL_CC_PRL_D,WlE1alpGeXU=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CL_CC_PRL_QLIK_CT_D +PL_QA_ALT_QLIK_PM_TRANS_CL_CC_PRL_D=PL_QA,PL_QA_QLIK_PM_TRANS_CL_CC_PRL_D,WlE1alpGeXU=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CL_CC_ALT_QLIK_CT_D +PL_QA_QLIK_PM_TRANS_CL_EPALARM_D=PL_QA,PL_QA_QLIK_PM_TRANS_CL_EPALARM_D,YjZTbzFpSVE=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CL_EPALARM_QLIK_CT_D +PL_QA_QLIK_PM_TRANS_CL_EPCUST_D=PL_QA,PL_QA_QLIK_PM_TRANS_CL_EPCUST_D,VDZQU0hEeko=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CL_EPCUST_QLIK_CT_D +PL_QA_QLIK_PM_TRANS_CL_ICREPO_D=PL_QA,PL_QA_QLIK_PM_TRANS_CL_ICREPO_D,STZUNnFkMVA=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CL_ICREPO_QLIK_CT_D +PL_QA_QLIK_PM_TRANS_CL_OAHIST_D=PL_QA,PL_QA_QLIK_PM_TRANS_CL_OAHIST_D,QW1Id0oxQTM=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CL_OAHIST_QLIK_CT_D +PL_QA_QLIK_PM_TRANS_CMS_D=PL_QA,PL_QA_QLIK_PM_TRANS_CMS_D,bHFUenNMM1A=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CMS_QLIK_CT_D +PL_QA_QLIK_PM_TRANS_CTI_D=PL_QA,PL_QA_QLIK_PM_TRANS_CTI_D,SE5jSVNJSTE=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_CTI_D +PL_QA_QLIK_PM_TRANS_SALES_COMP_D=PL_QA,PL_QA_QLIK_PM_TRANS_SALES_COMP_D,aER1cDRraVA=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_SALES_COMP_QLIK_CT_D +PL_QA_QLIK_PM_TRANS_VH_D=PL_QA,PL_QA_QLIK_PM_TRANS_VH_D,S0hxakxhOUQ=,libertymutual_grm_us_edw.us-east-1,PL_QA_QLIK_LOAD_WH,PM_TRANS_VH_QLIK_CT_D +PL_PROD_QLIK_PM_EDW_PSA_D=PL_PROD,PL_PROD_QLIK_PM_EDW_PSA_D,QVE0eEFkaEI=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_EDW_PSA_D +PL_PROD_QLIK_PM_EDW_TRANS_D=PL_PROD,PL_PROD_QLIK_PM_EDW_TRANS_D,bUR4MjV5Ulk=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_EDW_TRANS_QLIK_CT_D +PL_PROD_QLIK_PM_EDW_TRANS_NRT_SD_D=PL_PROD,PL_PROD_QLIK_PM_EDW_TRANS_NRT_SD_D,b1EzZFdTVHg=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_EDW_TRANS_NRT_SD_QLIK_CT_D +PL_PROD_QLIK_PM_ODS_FIN_FINX_D=PL_PROD,PL_PROD_QLIK_PM_ODS_FIN_FINX_D,aERweDNiaVg=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_ODS_FIN_FINX_QLIK_D +PL_PROD_QLIK_PM_ODS_VISION_D=PL_PROD,PL_PROD_QLIK_PM_ODS_VISION_D,U0tsOWpzVEU=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_ODS_VISION_QLIK_D +PL_PROD_QLIK_PM_ODS_VISION_TRANS_D=PL_PROD,PL_PROD_QLIK_PM_ODS_VISION_TRANS_D,aTZmMVB4TU8=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_ODS_VISION_TRANS_QLIK_CT_D +PL_PROD_QLIK_PM_ODS_XTRNL_INCMNG_D=PL_PROD,PL_PROD_QLIK_PM_ODS_XTRNL_INCMNG_D,eDh4RFlPQTc=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_ODS_XTRNL_INCMING_D +PL_PROD_QLIK_PM_TRANS_AVAYA_CTIEMAIL_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_AVAYA_CTIEMAIL_D,cnJacWxMTjE=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_AVAYA_CTIEMAIL_D +PL_PROD_QLIK_PM_TRANS_AVAYA_REPO_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_AVAYA_REPO_D,bjdQQWtvcm4=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_AVAYA_REPO_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_CL_AB_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CL_AB_D,bHc5RmRSTTI=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CL_AB_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_CL_AB_ALT_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CL_AB_D,bHc5RmRSTTI=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CL_AB_ALT_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_CL_CC_PRL_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CL_CC_PRL_D,YmdDYTRNWE8=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CL_CC_PRL_QLIK_CT_D +PL_PROD_ALT_QLIK_PM_TRANS_CL_CC_PRL_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CL_CC_PRL_D,YmdDYTRNWE8=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CL_CC_ALT_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D,cjlDbm12Yjg=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CL_EPALARM_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_CL_EPCUST_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CL_EPCUST_D,WjVqTDlySHU=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CL_EPCUST_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_CL_ICREPO_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CL_ICREPO_D,TTB6VTNVcGQ=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CL_ICREPO_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_CL_OAHIST_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CL_OAHIST_D,Tko5UlZRelc=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CL_OAHIST_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_CMS_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CMS_D,Wjd2OE9EaVc=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CMS_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_CTI_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_CTI_D,RlFsU3N2QzY=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_CTI_D +PL_PROD_QLIK_PM_TRANS_SALES_COMP_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_SALES_COMP_D,NnFNYjNydjA=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_SALES_COMP_QLIK_CT_D +PL_PROD_QLIK_PM_TRANS_VH_D=PL_PROD,PL_PROD_QLIK_PM_TRANS_VH_D,bzQ3YWVaaEU=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,PM_TRANS_VH_QLIK_CT_D +IT_APP_NONPROD_QLIK=NONPROD_UTILITY,QLIK_U,UWx5Nzl5cW0=,libertymutual_grm_us_edw.us-east-1,PL_DEV_QLIK_LOAD_WH,QLIK_U +IT_APP_PROD_QLIK=PROD_UTILITY,QLIK_U,UWxwNjV5aG0=,libertymutual_grm_us_edw.us-east-1,PL_PROD_QLIK_LOAD_WH,QLIK_U + + +[query_template] +get_data_columns=select column_name from information_schema.columns where table_schema = 'r_impacted_tables.SCHEM' AND table_name = 'r_impacted_tables.TBL' and column_name not in (exclude_list); +get_all_columns=select column_name from information_schema.columns where table_schema = 'r_impacted_tables.SCHEM' AND table_name = 'r_impacted_tables.TBL'; +get_data=SELECT v_column_list FROM sfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL WHERE ODS_EFF_ROW_DT = 'startdate'; +get_daterange=SELECT v_column_list FROM sfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL WHERE ODS_EFF_ROW_DT >= 'startdate' AND ODS_EFF_ROW_DT <= 'enddate'; +minus_query=SELECT v_column_list FROM fromsfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL EXCEPT SELECT v_column_list FROM tosfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL; +get_fromddl = SELECT get_ddl('TABLE','impacted_schema.impacted_table'); +local_minus_query=SELECT v_column_list FROM fromsfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL MINUS SELECT v_column_list FROM tosfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL; +#populate_recoverytable=INSERT INTO recoverytable SELECT v_column_list FROM fromsfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL A, minustable B WHERE columnlist; +populate_recoverytable=SELECT v_column_list FROM fromsfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL A, minustable B WHERE columnlist; +populate_minustable = INSERT INTO minustable SELECT * from sourcetable where whereclause; +get_tablelist=select distinct(table_name) from information_schema.columns where table_schema = 'r_impacted_tables.SCHEM'; + +[sync_direction] +FROMENV=PL_PROD_ALT_QLIK_PM_TRANS_CL_CC_PRL_D +TOENV=PL_QA_ALT_QLIK_PM_TRANS_CL_CC_PRL_D +#FROMDB=PL_PROD +#TODB=PL_QA + +[impacted_schema] +#schema=PM_ODS_VISION_QLIK_D +startdate= 2022-04-19 +enddate= 2022-04-19 +use_daterange=1 + +[db2_schemas] + + +[impacted_tables] +#STG_VKX0500T +CC_CLAIMSNAPSHOT \ No newline at end of file diff --git a/work/recovery-ui/recovery/lib/sfconnect/Connecter.py b/work/recovery-ui/recovery/lib/sfconnect/Connecter.py new file mode 100644 index 0000000..8845a74 --- /dev/null +++ b/work/recovery-ui/recovery/lib/sfconnect/Connecter.py @@ -0,0 +1,62 @@ +""" +Licensed 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. +""" + +import sqlite3 + +import psycopg2 +from snowflake import connector + + +class connecter(object): + def __init__(self): + self.cobject = [] + + def connect(self, sfparams): + user = sfparams[1][1].rstrip() + password = sfparams[1][2] + account = sfparams[1][3] + warehouse = sfparams[1][4] + database = sfparams[1][0] + schema = sfparams[1][5] + try: + conn = connector.connect( + user=user, + password=password, + account=account, + warehouse=warehouse, + database=database, + schema=schema, + ) + conn._paramstyle = "qmark" + except Exception as e: + print(f"Unable to connect to schema: {database}.{schema}:") + print(str(e)) + else: + print(f"Connected to {database}.{schema} in warehouse: {warehouse}.") + return (database, schema, conn) + + def open_sqlite(self, dbfile): + utilconn = sqlite3.connect(dbfile) + utilcur = utilconn.cursor() + return (utilconn, utilcur) + + def open_pgsql(self): + try: + conn = psycopg2.connect("dbname='recovery' user='postgres' host='localhost' password='replicate'") + return conn + except: + print(f"Unable to connect to the database") + + def __del__(self): + pass diff --git a/work/recovery-ui/recovery/lib/sfconnect/__init__.py b/work/recovery-ui/recovery/lib/sfconnect/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/work/recovery-ui/recovery/lib/sql/Queries.py b/work/recovery-ui/recovery/lib/sql/Queries.py new file mode 100644 index 0000000..3a362b2 --- /dev/null +++ b/work/recovery-ui/recovery/lib/sql/Queries.py @@ -0,0 +1,89 @@ +""" +Licensed 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. +""" +import configparser +from base64 import b64decode +from encodings import utf_8 + + +class sfquery(object): + def __init__(self): + self.cobject = [] + + def retrieve(self, options): + queries = {} + queries["get_data_columns"] = options["datacolumn_query"] + queries["get_all_columns"] = options["allcolumn_query"] + queries["get_data"] = options["get_data"] + queries["minus_query"] = options["minus_query"] + queries["get_ddl"] = options["get_fromddl"] + queries["get_tablelist"] = options["get_tablelist"] + # queries['local_minus_query'] = options['local_minus_query'] + return queries + + def generate_query( + incoming_query, + schema, + tablename, + start_date, + end_date, + use_daterange, + database_name, + columnlist, + ): + if use_daterange == "0": + outgoing_query = ( + incoming_query.replace("r_impacted_tables.SCHEM", schema) + .replace("r_impacted_tables.TBL", tablename) + .replace("startdate", start_date) + .replace("sfenv", database_name) + .replace("v_column_list", columnlist) + ) + else: + outgoing_query = ( + incoming_query.replace("r_impacted_tables.SCHEM", schema) + .replace("r_impacted_tables.TBL", tablename) + .replace("startdate", start_date) + .replace("enddate", end_date) + .replace("sfenv", database_name) + .replace("v_column_list", columnlist) + ) + return outgoing_query + + def generate_minusquery(object, minustable, data_columns, fromtable, totable): + query = ( + object.replace("minustable", minustable) + .replace("v_column_list", ",".join(data_columns)) + .replace( + "fromsfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL", fromtable + ) + .replace("tosfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL", totable) + ) + return query + + def generate_recoveryquery( + object, recovertable, columnlist, fromtable, minustable, whereclause + ): + query = ( + object.replace("recoverytable", recovertable) + .replace("v_column_list", columnlist) + .replace( + "fromsfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL", fromtable + ) + .replace("minustable", minustable) + .replace("columnlist", whereclause) + ) + return query + + def __del__(self): + pass diff --git a/work/recovery-ui/recovery/lib/sql/__init__.py b/work/recovery-ui/recovery/lib/sql/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/work/recovery-ui/recovery/lib/sql/__pycache__/Queries.cpython-310.pyc b/work/recovery-ui/recovery/lib/sql/__pycache__/Queries.cpython-310.pyc new file mode 100644 index 0000000..c92083d Binary files /dev/null and b/work/recovery-ui/recovery/lib/sql/__pycache__/Queries.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/lib/sql/__pycache__/__init__.cpython-310.pyc b/work/recovery-ui/recovery/lib/sql/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000..ad8c11f Binary files /dev/null and b/work/recovery-ui/recovery/lib/sql/__pycache__/__init__.cpython-310.pyc differ diff --git a/work/recovery-ui/recovery/lib/sql/populate_tables.sql b/work/recovery-ui/recovery/lib/sql/populate_tables.sql new file mode 100644 index 0000000..b915781 --- /dev/null +++ b/work/recovery-ui/recovery/lib/sql/populate_tables.sql @@ -0,0 +1,132 @@ +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D','PL_DEV','PL_DEV_QLIK_PM_TRANS_CL_EPALARM_D','dFdRNWdXeUM=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_TRANS_CL_EPALARM_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_TRANS_CL_ICREPO_D','PL_DEV','PL_DEV_QLIK_PM_TRANS_CL_ICREPO_D','cDJTWldwQXE=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_TRANS_CL_ICREPO_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_TRANS_AVAYA_REPO_D','PL_DEV','PL_DEV_QLIK_PM_TRANS_AVAYA_REPO_D','WjgzSm83QzQ=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_TRANS_AVAYA_REPO_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_ODS_VISION_D','PL_DEV','PL_DEV_QLIK_PM_ODS_VISION_D','NUgzWGFuVE0=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_ODS_VISION_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_ODS_XTRNL_INCMNG_D','PL_DEV','PL_DEV_QLIK_PM_ODS_XTRNL_INCMNG_D','UGJaZ3FVeDU=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_ODS_XTRNL_INCMING_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_TRANS_CMS_D','PL_DEV','PL_DEV_QLIK_PM_TRANS_CMS_D','ZDdkODc0V1I=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_TRANS_CMS_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_TRANS_CL_EPCUST_D','PL_DEV','PL_DEV_QLIK_PM_TRANS_CL_EPCUST_D','RXJRUjlZS0o=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_TRANS_CL_EPCUST_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_TRANS_AVAYA_CTIEMAIL_D','PL_DEV','PL_DEV_QLIK_PM_TRANS_AVAYA_CTIEMAIL_D','SlR6VjBWaG0=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_TRANS_AVAYA_CTIEMAIL_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_TRANS_CL_OAHIST_D','PL_DEV','PL_DEV_QLIK_PM_TRANS_CL_OAHIST_D','NlJ5eFhBNXE=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_TRANS_CL_OAHIST_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_TRANS_SALES_COMP_D','PL_DEV','PL_DEV_QLIK_PM_TRANS_SALES_COMP_D','S3U4djJFUWI=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_TRANS_SALES_COMP_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_TRANS_CL_AB_D','PL_DEV','PL_DEV_QLIK_PM_TRANS_CL_AB_D','aDdBSE9Vclc=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_TRANS_CL_AB_ALT_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_TRANS_VH_D','PL_DEV','PL_DEV_QLIK_PM_TRANS_VH_D','Y0JVSHltOWU=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_TRANS_VH_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_ODS_FIN_FINX_D','PL_DEV','PL_DEV_QLIK_PM_ODS_FIN_FINX_D','VTZuWTdBR3k=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_ODS_FIN_FINX_QLIK_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_ODS_VISION_TRANS_D','PL_DEV','PL_DEV_QLIK_PM_ODS_VISION_TRANS_D','ejY1S3RIZk0=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_ODS_VISION_TRANS_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_EDW_TRANS_D','PL_DEV','PL_DEV_QLIK_PM_EDW_TRANS_D','TU5uSHE2WVA=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_EDW_TRANS_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_TRANS_CTI_D','PL_DEV','PL_DEV_QLIK_PM_TRANS_CTI_D','Um5IOEVLRmU=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_TRANS_CTI_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_EDW_TRANS_NRT_SD_D','PL_DEV','PL_DEV_QLIK_PM_EDW_TRANS_NRT_SD_D','UXBBaFd5Nno=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_EDW_TRANS_NRT_SD_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_EDW_PSA_D','PL_DEV','PL_DEV_QLIK_PM_EDW_PSA_D','UWtDZzczNkg=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_EDW_PSA_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_DEV_QLIK_PM_TRANS_CL_CC_PRL_D','PL_DEV','PL_DEV_QLIK_PM_TRANS_CL_CC_PRL_D','S2o5OEVmWEo=','libertymutual_grm_us_edw.us-east-1','PL_DEV_QLIK_LOAD_WH','PM_TRANS_CL_CC_PRL_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_EDW_PSA_D','PL_QA','PL_QA_QLIK_PM_EDW_PSA_D','cjlMUXRQRE4=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_EDW_PSA_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_EDW_TRANS_D','PL_QA','PL_QA_QLIK_PM_EDW_TRANS_D','T01JN3RDYko=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_EDW_TRANS_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_EDW_TRANS_NRT_SD_D','PL_QA','PL_QA_QLIK_PM_EDW_TRANS_NRT_SD_D','bTc5QjdTRmk=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_EDW_TRANS_NRT_SD_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_ODS_FIN_FINX_D','PL_QA','PL_QA_QLIK_PM_ODS_FIN_FINX_D','dXZhZE04OXk=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_ODS_FIN_FINX_QLIK_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_ODS_VISION_D','PL_QA','PL_QA_QLIK_PM_ODS_VISION_D','c3FoNVZ4R1Y=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_ODS_VISION_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_ODS_VISION_TRANS_D','PL_QA','PL_QA_QLIK_PM_ODS_VISION_TRANS_D','dndBSjQwSks=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_ODS_VISION_TRANS_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_ODS_XTRNL_INCMNG_D','PL_QA','PL_QA_QLIK_PM_ODS_XTRNL_INCMNG_D','Z0NSWGp0NVE=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_ODS_XTRNL_INCMING_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_TRANS_AVAYA_CTIEMAIL_D','PL_QA','PL_QA_QLIK_PM_TRANS_AVAYA_CTIEMAIL_D','VUcxZVJ4a00=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_TRANS_AVAYA_CTIEMAIL_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_TRANS_AVAYA_REPO_D','PL_QA','PL_QA_QLIK_PM_TRANS_AVAYA_REPO_D','WVI2N2VlVWQ=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_TRANS_AVAYA_REPO_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_TRANS_CL_AB_D','PL_QA','PL_QA_QLIK_PM_TRANS_CL_AB_D','aXI2WFFjYUQ=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_TRANS_CL_AB_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_TRANS_CL_CC_PRL_D','PL_QA','PL_QA_QLIK_PM_TRANS_CL_CC_PRL_D','WlE1alpGeXU=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_TRANS_CL_CC_PRL_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_TRANS_CL_EPALARM_D','PL_QA','PL_QA_QLIK_PM_TRANS_CL_EPALARM_D','YjZTbzFpSVE=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_TRANS_CL_EPALARM_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_TRANS_CL_EPCUST_D','PL_QA','PL_QA_QLIK_PM_TRANS_CL_EPCUST_D','VDZQU0hEeko=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_TRANS_CL_EPCUST_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_TRANS_CL_ICREPO_D','PL_QA','PL_QA_QLIK_PM_TRANS_CL_ICREPO_D','STZUNnFkMVA=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_TRANS_CL_ICREPO_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_TRANS_CL_OAHIST_D','PL_QA','PL_QA_QLIK_PM_TRANS_CL_OAHIST_D','QW1Id0oxQTM=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_TRANS_CL_OAHIST_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_TRANS_CMS_D','PL_QA','PL_QA_QLIK_PM_TRANS_CMS_D','bHFUenNMM1A=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_TRANS_CMS_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_TRANS_CTI_D','PL_QA','PL_QA_QLIK_PM_TRANS_CTI_D','SE5jSVNJSTE=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_TRANS_CTI_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_TRANS_SALES_COMP_D','PL_QA','PL_QA_QLIK_PM_TRANS_SALES_COMP_D','aER1cDRraVA=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_TRANS_SALES_COMP_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_QA_QLIK_PM_TRANS_VH_D','PL_QA','PL_QA_QLIK_PM_TRANS_VH_D','S0hxakxhOUQ=','libertymutual_grm_us_edw.us-east-1','PL_QA_QLIK_LOAD_WH','PM_TRANS_VH_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_EDW_PSA_D','PL_PROD','PL_PROD_QLIK_PM_EDW_PSA_D','QVE0eEFkaEI=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_EDW_PSA_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_EDW_TRANS_D','PL_PROD','PL_PROD_QLIK_PM_EDW_TRANS_D','bUR4MjV5Ulk=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_EDW_TRANS_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_EDW_TRANS_NRT_SD_D','PL_PROD','PL_PROD_QLIK_PM_EDW_TRANS_NRT_SD_D','b1EzZFdTVHg=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_EDW_TRANS_NRT_SD_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_ODS_FIN_FINX_D','PL_PROD','PL_PROD_QLIK_PM_ODS_FIN_FINX_D','aERweDNiaVg=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_ODS_FIN_FINX_QLIK_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_ODS_VISION_D','PL_PROD','PL_PROD_QLIK_PM_ODS_VISION_D','U0tsOWpzVEU=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_ODS_VISION_QLIK_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_ODS_VISION_TRANS_D','PL_PROD','PL_PROD_QLIK_PM_ODS_VISION_TRANS_D','aTZmMVB4TU8=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_ODS_VISION_TRANS_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_ODS_XTRNL_INCMNG_D','PL_PROD','PL_PROD_QLIK_PM_ODS_XTRNL_INCMNG_D','eDh4RFlPQTc=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_ODS_XTRNL_INCMING_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_TRANS_AVAYA_CTIEMAIL_D','PL_PROD','PL_PROD_QLIK_PM_TRANS_AVAYA_CTIEMAIL_D','cnJacWxMTjE=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_TRANS_AVAYA_CTIEMAIL_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_TRANS_AVAYA_REPO_D','PL_PROD','PL_PROD_QLIK_PM_TRANS_AVAYA_REPO_D','bjdQQWtvcm4=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_TRANS_AVAYA_REPO_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_TRANS_CL_AB_D','PL_PROD','PL_PROD_QLIK_PM_TRANS_CL_AB_D','bHc5RmRSTTI=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_TRANS_CL_AB_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_TRANS_CL_CC_PRL_D','PL_PROD','PL_PROD_QLIK_PM_TRANS_CL_CC_PRL_D','YmdDYTRNWE8=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_TRANS_CL_CC_PRL_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D','PL_PROD','PL_PROD_QLIK_PM_TRANS_CL_EPALARM_D','cjlDbm12Yjg=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_TRANS_CL_EPALARM_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_TRANS_CL_EPCUST_D','PL_PROD','PL_PROD_QLIK_PM_TRANS_CL_EPCUST_D','WjVqTDlySHU=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_TRANS_CL_EPCUST_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_TRANS_CL_ICREPO_D','PL_PROD','PL_PROD_QLIK_PM_TRANS_CL_ICREPO_D','TTB6VTNVcGQ=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_TRANS_CL_ICREPO_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_TRANS_CL_OAHIST_D','PL_PROD','PL_PROD_QLIK_PM_TRANS_CL_OAHIST_D','Tko5UlZRelc=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_TRANS_CL_OAHIST_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_TRANS_CMS_D','PL_PROD','PL_PROD_QLIK_PM_TRANS_CMS_D','Wjd2OE9EaVc=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_TRANS_CMS_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_TRANS_CTI_D','PL_PROD','PL_PROD_QLIK_PM_TRANS_CTI_D','RlFsU3N2QzY=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_TRANS_CTI_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_TRANS_SALES_COMP_D','PL_PROD','PL_PROD_QLIK_PM_TRANS_SALES_COMP_D','NnFNYjNydjA=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_TRANS_SALES_COMP_QLIK_CT_D'); +INSERT INTO targets (targetname,username,password,account,warehouse,database,schemaname) VALUES ('PL_PROD_QLIK_PM_TRANS_VH_D','PL_PROD','PL_PROD_QLIK_PM_TRANS_VH_D','bzQ3YWVaaEU=','libertymutual_grm_us_edw.us-east-1','PL_PROD_QLIK_LOAD_WH','PM_TRANS_VH_QLIK_CT_D'); + +INSERT INTO settings (keyname,valuename) VALUES ('mailhost','smtprelay.lmig.com'); +INSERT INTO settings (keyname,valuename) VALUES ('sender','Qlik_Admin@LibertyMutual.com'); +INSERT INTO settings (keyname,valuename) VALUES ('receivers','HTTP_509@LibertyMutual.com, PMEDW_Prod_Support@LibertyMutual.com'); +INSERT INTO settings (keyname,valuename) VALUES ('full_qlik_columns','HEADER_CHANGE_SEQ,HEADER_CHANGE_OPER,HEADER_CHANGE_MASK,HEADER_STREAM_POSITION,HEADER_OPERATION,HEADER_TRANSACTION_ID,HEADER_TIMESTAMP'); +INSERT INTO settings (keyname,valuename) VALUES ('qlik_columns','HEADER_CHANGE_SEQ,HEADER_CHANGE_OPER,HEADER_STREAM_POSITION,HEADER_OPERATION,HEADER_TRANSACTION_ID,HEADER_TIMESTAMP'); +INSERT INTO settings (keyname,valuename) VALUES ('gg_columns','GG_PRC_OWNER, GG_SRC_SERVER, GG_CSN, GG_RSN, GG_REPLICAT, GG_EXTRACT, GG_XID, GG_CORRELATION_ID, GG_USER_ID, GG_FILESEQNO, GG_FILERBA'); +INSERT INTO settings (keyname,valuename) VALUES ('mssql_gg_columns','ODS_CDC_TRANS_TYPE,ODS_EFF_ROW_DTM,ODS_CREATE_ROW_DTM,ODS_CREATE_ROW_DT,ODS_ROW_PROCESS_DTM,ODS_EFF_ROW_DT,GG_XID,GG_CORRELATION_ID,GG_USER_ID,GG_FILESEQNO,GG_FILERBA,ODS_EXP_ROW_DTM,ODS_SID,ODS_AUDIT_ID,ODS_EXP_ROW_DT'); +INSERT INTO settings (keyname,valuename) VALUES ('cleanup_tempdata','0'); +INSERT INTO settings (keyname,valuename) VALUES ('utilitydb','sqlite'); +INSERT INTO settings (keyname,valuename) VALUES ('fromdata','./csv_files/from_data.csv'); +INSERT INTO settings (keyname,valuename) VALUES ('todata','./csv_files/to_data.csv'); +INSERT INTO settings (keyname,valuename) VALUES ('recovereddata','./csv_files/recovered_data.csv'); + +INSERT INTO excluded_columns ( columnname) VALUES ('HEADER_CHANGE_SEQ'); +INSERT INTO excluded_columns ( columnname) VALUES ('HEADER_CHANGE_OPER'); +INSERT INTO excluded_columns ( columnname) VALUES ('HEADER_CHANGE_MASK'); +INSERT INTO excluded_columns ( columnname) VALUES ('HEADER_STREAM_POSITION'); +INSERT INTO excluded_columns ( columnname) VALUES ('HEADER_OPERATION'); +INSERT INTO excluded_columns ( columnname) VALUES ('HEADER_TRANSACTION_ID'); +INSERT INTO excluded_columns ( columnname) VALUES ('HEADER_TIMESTAMP'); +INSERT INTO excluded_columns ( columnname) VALUES ('GG_PRC_OWNER'); +INSERT INTO excluded_columns ( columnname) VALUES ('GG_SRC_SERVER'); +INSERT INTO excluded_columns ( columnname) VALUES ('GG_CSN'); +INSERT INTO excluded_columns ( columnname) VALUES ('GG_RSN'); +INSERT INTO excluded_columns ( columnname) VALUES ('GG_REPLICAT'); +INSERT INTO excluded_columns ( columnname) VALUES ('GG_EXTRACT'); +INSERT INTO excluded_columns ( columnname) VALUES ('GG_XID'); +INSERT INTO excluded_columns ( columnname) VALUES ('GG_CORRELATION_ID'); +INSERT INTO excluded_columns ( columnname) VALUES ('GG_USER_ID'); +INSERT INTO excluded_columns ( columnname) VALUES ('GG_FILESEQNO'); +INSERT INTO excluded_columns ( columnname) VALUES ('GG_FILERBA'); +INSERT INTO excluded_columns ( columnname) VALUES ('change_seq'); +INSERT INTO excluded_columns ( columnname) VALUES ('change_oper'); +INSERT INTO excluded_columns ( columnname) VALUES ('change_mask'); +INSERT INTO excluded_columns ( columnname) VALUES ('stream_position'); +INSERT INTO excluded_columns ( columnname) VALUES ('operation'); +INSERT INTO excluded_columns ( columnname) VALUES ('transaction_id'); +INSERT INTO excluded_columns ( columnname) VALUES ('timestamp'); +INSERT INTO excluded_columns ( columnname) VALUES ('header_change_seq'); +INSERT INTO excluded_columns ( columnname) VALUES ('header_change_oper'); +INSERT INTO excluded_columns ( columnname) VALUES ('header_change_mask'); +INSERT INTO excluded_columns ( columnname) VALUES ('header_stream_position'); +INSERT INTO excluded_columns ( columnname) VALUES ('header_operation'); +INSERT INTO excluded_columns ( columnname) VALUES ('header_transaction_id'); +INSERT INTO excluded_columns ( columnname) VALUES ('header_timestamp'); +INSERT INTO excluded_columns ( columnname) VALUES ('STG_PROCESS_DATE'); +INSERT INTO excluded_columns ( columnname) VALUES ('ODS_EFF_ROW_DT'); +INSERT INTO excluded_columns ( columnname) VALUES ('ODS_EXP_ROW_DTM'); +INSERT INTO excluded_columns ( columnname) VALUES ('ODS_CDC_TRANS_TYPE'); +INSERT INTO excluded_columns ( columnname) VALUES ('ODS_CREATE_ROW_DTM'); +INSERT INTO excluded_columns ( columnname) VALUES ('ODS_CREATE_ROW_DT'); +INSERT INTO excluded_columns ( columnname) VALUES ('ODS_ROW_PROCESS_DTM'); +INSERT INTO excluded_columns ( columnname) VALUES ('ODS_SID'); +INSERT INTO excluded_columns ( columnname) VALUES ('ODS_AUDIT_ID'); +INSERT INTO excluded_columns ( columnname) VALUES ('ODS_EFF_ROW_DTM'); +INSERT INTO excluded_columns ( columnname) VALUES ('ODS_EXP_ROW_DT'); +INSERT INTO excluded_columns ( columnname) VALUES ('ROW_EXP_DT'); +INSERT INTO excluded_columns ( columnname) VALUES ('ROW_EFF_DT'); + +INSERT INTO settings (keyname,valuename) VALUES ("get_data_columns","select column_name from information_schema.columns where table_schema = 'r_impacted_tables.SCHEM' AND table_name = 'r_impacted_tables.TBL' and column_name not in (exclude_list);"; +INSERT INTO settings (keyname,valuename) VALUES ("get_all_columns","select column_name from information_schema.columns where table_schema = 'r_impacted_tables.SCHEM' AND table_name = 'r_impacted_tables.TBL';"; +INSERT INTO settings (keyname,valuename) VALUES ("get_data","SELECT v_column_list FROM sfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL WHERE ODS_EFF_ROW_DT = 'startdate';"; +INSERT INTO settings (keyname,valuename) VALUES ("get_daterange","SELECT v_column_list FROM sfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL WHERE ODS_EFF_ROW_DT >= 'startdate' AND ODS_EFF_ROW_DT <= 'enddate';"; +INSERT INTO settings (keyname,valuename) VALUES ("minus_query","SELECT v_column_list FROM fromsfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL EXCEPT SELECT v_column_list FROM tosfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL;"; +INSERT INTO settings (keyname,valuename) VALUES ("get_fromddl","SELECT get_ddl('TABLE','impacted_schema.impacted_table');"; +INSERT INTO settings (keyname,valuename) VALUES ("local_minus_query","SELECT v_column_list FROM fromsfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL MINUS SELECT v_column_list FROM tosfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL;"; +INSERT INTO settings (keyname,valuename) VALUES ("populate_recoverytable","SELECT v_column_list FROM fromsfenv.r_impacted_tables.SCHEM.r_impacted_tables.TBL A, minustable B WHERE columnlist;"; +INSERT INTO settings (keyname,valuename) VALUES ("populate_minustable","INSERT INTO minustable SELECT * from sourcetable where whereclause;"; + +INSERT INTO sync_params (keyname,valuename) VALUES ('FROMENV','PL_PROD_QLIK_PM_TRANS_SALES_COMP_D'); +INSERT INTO sync_params (keyname,valuename) VALUES ('TOENV','PL_QA_QLIK_PM_TRANS_SALES_COMP_D'); +INSERT INTO sync_params (keyname,valuename) VALUES ('startdate','2022-04-09'); +INSERT INTO sync_params (keyname,valuename) VALUES ('enddate','2022-04-09'); +INSERT INTO sync_params (keyname,valuename) VALUES ('use_daterange','1'); diff --git a/work/recovery-ui/recovery/manage.py b/work/recovery-ui/recovery/manage.py new file mode 100644 index 0000000..1664015 --- /dev/null +++ b/work/recovery-ui/recovery/manage.py @@ -0,0 +1,28 @@ +#!/usr/bin/python3 +""" +Licensed 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 main import Excluded_columns, Queries, Sync_params, Targets, app, db, Settings + + +@app.shell_context_processor +def make_shell_context(): + return dict( + app=app, + db=db, + Settings=Settings, + Excluded_columns=Excluded_columns, + Queries=Queries, + Sync_params=Sync_params, + Targets=Targets, + ) diff --git a/work/recovery-ui/recovery/static/fonts/FontAwesome.otf b/work/recovery-ui/recovery/static/fonts/FontAwesome.otf new file mode 100644 index 0000000..3ed7f8b Binary files /dev/null and b/work/recovery-ui/recovery/static/fonts/FontAwesome.otf differ diff --git a/work/recovery-ui/recovery/static/fonts/fontawesome-webfont.eot b/work/recovery-ui/recovery/static/fonts/fontawesome-webfont.eot new file mode 100644 index 0000000..9b6afae Binary files /dev/null and b/work/recovery-ui/recovery/static/fonts/fontawesome-webfont.eot differ diff --git a/work/recovery-ui/recovery/static/fonts/fontawesome-webfont.svg b/work/recovery-ui/recovery/static/fonts/fontawesome-webfont.svg new file mode 100644 index 0000000..d05688e --- /dev/null +++ b/work/recovery-ui/recovery/static/fonts/fontawesome-webfont.svg @@ -0,0 +1,655 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/work/recovery-ui/recovery/static/fonts/fontawesome-webfont.ttf b/work/recovery-ui/recovery/static/fonts/fontawesome-webfont.ttf new file mode 100644 index 0000000..26dea79 Binary files /dev/null and b/work/recovery-ui/recovery/static/fonts/fontawesome-webfont.ttf differ diff --git a/work/recovery-ui/recovery/static/fonts/fontawesome-webfont.woff b/work/recovery-ui/recovery/static/fonts/fontawesome-webfont.woff new file mode 100644 index 0000000..dc35ce3 Binary files /dev/null and b/work/recovery-ui/recovery/static/fonts/fontawesome-webfont.woff differ diff --git a/work/recovery-ui/recovery/static/fonts/fontawesome-webfont.woff2 b/work/recovery-ui/recovery/static/fonts/fontawesome-webfont.woff2 new file mode 100644 index 0000000..500e517 Binary files /dev/null and b/work/recovery-ui/recovery/static/fonts/fontawesome-webfont.woff2 differ diff --git a/work/recovery-ui/recovery/static/images/about.jpg b/work/recovery-ui/recovery/static/images/about.jpg new file mode 100644 index 0000000..01cf6aa Binary files /dev/null and b/work/recovery-ui/recovery/static/images/about.jpg differ diff --git a/work/recovery-ui/recovery/static/images/blog-1.jpg b/work/recovery-ui/recovery/static/images/blog-1.jpg new file mode 100644 index 0000000..c27bd2b Binary files /dev/null and b/work/recovery-ui/recovery/static/images/blog-1.jpg differ diff --git a/work/recovery-ui/recovery/static/images/blog-2.jpg b/work/recovery-ui/recovery/static/images/blog-2.jpg new file mode 100644 index 0000000..aaff4d4 Binary files /dev/null and b/work/recovery-ui/recovery/static/images/blog-2.jpg differ diff --git a/work/recovery-ui/recovery/static/images/carousel-1.jpg b/work/recovery-ui/recovery/static/images/carousel-1.jpg new file mode 100644 index 0000000..1f3be70 Binary files /dev/null and b/work/recovery-ui/recovery/static/images/carousel-1.jpg differ diff --git a/work/recovery-ui/recovery/static/images/carousel-2.jpg b/work/recovery-ui/recovery/static/images/carousel-2.jpg new file mode 100644 index 0000000..67e6a8f Binary files /dev/null and b/work/recovery-ui/recovery/static/images/carousel-2.jpg differ diff --git a/work/recovery-ui/recovery/static/images/carousel-3.jpg b/work/recovery-ui/recovery/static/images/carousel-3.jpg new file mode 100644 index 0000000..665fd3a Binary files /dev/null and b/work/recovery-ui/recovery/static/images/carousel-3.jpg differ diff --git a/work/recovery-ui/recovery/static/images/creative-agency-website-template.jpg b/work/recovery-ui/recovery/static/images/creative-agency-website-template.jpg new file mode 100644 index 0000000..dad349e Binary files /dev/null and b/work/recovery-ui/recovery/static/images/creative-agency-website-template.jpg differ diff --git a/work/recovery-ui/recovery/static/images/header.jpg b/work/recovery-ui/recovery/static/images/header.jpg new file mode 100644 index 0000000..98466f8 Binary files /dev/null and b/work/recovery-ui/recovery/static/images/header.jpg differ diff --git a/work/recovery-ui/recovery/static/images/snake-eyes-large.jpg b/work/recovery-ui/recovery/static/images/snake-eyes-large.jpg new file mode 100644 index 0000000..892852d Binary files /dev/null and b/work/recovery-ui/recovery/static/images/snake-eyes-large.jpg differ diff --git a/work/recovery-ui/recovery/static/images/snake-eyes.jpg b/work/recovery-ui/recovery/static/images/snake-eyes.jpg new file mode 100644 index 0000000..97913d9 Binary files /dev/null and b/work/recovery-ui/recovery/static/images/snake-eyes.jpg differ diff --git a/work/recovery-ui/recovery/static/images/team-1.jpg b/work/recovery-ui/recovery/static/images/team-1.jpg new file mode 100644 index 0000000..6f52a92 Binary files /dev/null and b/work/recovery-ui/recovery/static/images/team-1.jpg differ diff --git a/work/recovery-ui/recovery/static/images/team-2.jpg b/work/recovery-ui/recovery/static/images/team-2.jpg new file mode 100644 index 0000000..32c4e62 Binary files /dev/null and b/work/recovery-ui/recovery/static/images/team-2.jpg differ diff --git a/work/recovery-ui/recovery/static/images/team-3.jpg b/work/recovery-ui/recovery/static/images/team-3.jpg new file mode 100644 index 0000000..c459dc2 Binary files /dev/null and b/work/recovery-ui/recovery/static/images/team-3.jpg differ diff --git a/work/recovery-ui/recovery/static/images/team-4.jpg b/work/recovery-ui/recovery/static/images/team-4.jpg new file mode 100644 index 0000000..c5492c2 Binary files /dev/null and b/work/recovery-ui/recovery/static/images/team-4.jpg differ diff --git a/work/recovery-ui/recovery/static/images/testimonial-1.jpg b/work/recovery-ui/recovery/static/images/testimonial-1.jpg new file mode 100644 index 0000000..6196f68 Binary files /dev/null and b/work/recovery-ui/recovery/static/images/testimonial-1.jpg differ diff --git a/work/recovery-ui/recovery/static/images/testimonial-2.jpg b/work/recovery-ui/recovery/static/images/testimonial-2.jpg new file mode 100644 index 0000000..4ecbd11 Binary files /dev/null and b/work/recovery-ui/recovery/static/images/testimonial-2.jpg differ diff --git a/work/recovery-ui/recovery/static/images/testimonial-3.jpg b/work/recovery-ui/recovery/static/images/testimonial-3.jpg new file mode 100644 index 0000000..a6b7971 Binary files /dev/null and b/work/recovery-ui/recovery/static/images/testimonial-3.jpg differ diff --git a/work/recovery-ui/recovery/static/images/testimonial-4.jpg b/work/recovery-ui/recovery/static/images/testimonial-4.jpg new file mode 100644 index 0000000..e437798 Binary files /dev/null and b/work/recovery-ui/recovery/static/images/testimonial-4.jpg differ diff --git a/work/recovery-ui/recovery/static/images/testimonial-5.jpg b/work/recovery-ui/recovery/static/images/testimonial-5.jpg new file mode 100644 index 0000000..7f318d1 Binary files /dev/null and b/work/recovery-ui/recovery/static/images/testimonial-5.jpg differ diff --git a/work/recovery-ui/recovery/static/images/user.jpg b/work/recovery-ui/recovery/static/images/user.jpg new file mode 100644 index 0000000..869b274 Binary files /dev/null and b/work/recovery-ui/recovery/static/images/user.jpg differ diff --git a/work/recovery-ui/recovery/static/scripts/js/main.js b/work/recovery-ui/recovery/static/scripts/js/main.js new file mode 100644 index 0000000..c12711e --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/js/main.js @@ -0,0 +1,89 @@ +(function ($) { + "use strict"; + + // Dropdown on mouse hover + $(document).ready(function () { + function toggleNavbarMethod() { + if ($(window).width() > 992) { + $('.navbar .dropdown').on('mouseover', function () { + $('.dropdown-toggle', this).trigger('click'); + }).on('mouseout', function () { + $('.dropdown-toggle', this).trigger('click').blur(); + }); + } else { + $('.navbar .dropdown').off('mouseover').off('mouseout'); + } + } + toggleNavbarMethod(); + $(window).resize(toggleNavbarMethod); + }); + + + // Back to top button + $(window).scroll(function () { + if ($(this).scrollTop() > 100) { + $('.back-to-top').fadeIn('slow'); + } else { + $('.back-to-top').fadeOut('slow'); + } + }); + $('.back-to-top').click(function () { + $('html, body').animate({scrollTop: 0}, 1500, 'easeInOutExpo'); + return false; + }); + + + // Facts counter + $('[data-toggle="counter-up"]').counterUp({ + delay: 10, + time: 2000 + }); + + + // Team carousel + $(".team-carousel").owlCarousel({ + autoplay: true, + smartSpeed: 1000, + center: true, + dots: true, + loop: true, + margin: 30, + responsive: { + 0:{ + items:1 + }, + 576:{ + items:1 + }, + 768:{ + items:2 + }, + 992:{ + items:3 + } + } + }); + + + // Testimonials carousel + $(".testimonial-carousel").owlCarousel({ + autoplay: true, + smartSpeed: 1000, + dots: true, + loop: true, + margin: 30, + responsive: { + 0:{ + items:1 + }, + 576:{ + items:1 + }, + 768:{ + items:2 + } + } + }); + +})(jQuery); + diff --git a/work/recovery-ui/recovery/static/scripts/lib/counterup/counterup.min.js b/work/recovery-ui/recovery/static/scripts/lib/counterup/counterup.min.js new file mode 100644 index 0000000..3531cbb --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/lib/counterup/counterup.min.js @@ -0,0 +1,11 @@ +/*! + * jquery.counterup.js 2.1.0 + * + * Copyright 2013, Benjamin Intal http://gambit.ph @bfintal + * Released under the GPL v2 License + * + * Amended by Jeremy Paris, Ciro Mattia Gonano and others + * + * Date: Feb 24, 2017 + */ + (function($){"use strict";$.fn.counterUp=function(options){var settings=$.extend({time:400,delay:10,offset:100,beginAt:0,formatter:false,context:"window",callback:function(){}},options),s;return this.each(function(){var $this=$(this),counter={time:$(this).data("counterup-time")||settings.time,delay:$(this).data("counterup-delay")||settings.delay,offset:$(this).data("counterup-offset")||settings.offset,beginAt:$(this).data("counterup-beginat")||settings.beginAt,context:$(this).data("counterup-context")||settings.context};var counterUpper=function(){var nums=[];var divisions=counter.time/counter.delay;var num=$(this).attr("data-num")?$(this).attr("data-num"):$this.text();var isComma=/[0-9]+,[0-9]+/.test(num);num=num.replace(/,/g,"");var decimalPlaces=(num.split(".")[1]||[]).length;if(counter.beginAt>num)counter.beginAt=num;var isTime=/[0-9]+:[0-9]+:[0-9]+/.test(num);if(isTime){var times=num.split(":"),m=1;s=0;while(times.length>0){s+=m*parseInt(times.pop(),10);m*=60}}for(var i=divisions;i>=counter.beginAt/num*divisions;i--){var newNum=parseFloat(num/divisions*i).toFixed(decimalPlaces);if(isTime){newNum=parseInt(s/divisions*i);var hours=parseInt(newNum/3600)%24;var minutes=parseInt(newNum/60)%60;var seconds=parseInt(newNum%60,10);newNum=(hours<10?"0"+hours:hours)+":"+(minutes<10?"0"+minutes:minutes)+":"+(seconds<10?"0"+seconds:seconds)}if(isComma){while(/(\d+)(\d{3})/.test(newNum.toString())){newNum=newNum.toString().replace(/(\d+)(\d{3})/,"$1"+","+"$2")}}if(settings.formatter){newNum=settings.formatter.call(this,newNum)}nums.unshift(newNum)}$this.data("counterup-nums",nums);$this.text(counter.beginAt);var f=function(){if(!$this.data("counterup-nums")){settings.callback.call(this);return}$this.html($this.data("counterup-nums").shift());if($this.data("counterup-nums").length){setTimeout($this.data("counterup-func"),counter.delay)}else{$this.data("counterup-nums",null);$this.data("counterup-func",null);settings.callback.call(this)}};$this.data("counterup-func",f);setTimeout($this.data("counterup-func"),counter.delay)};$this.waypoint(function(direction){counterUpper();this.destroy()},{offset:counter.offset+"%",context:counter.context})})}})(jQuery); diff --git a/work/recovery-ui/recovery/static/scripts/lib/easing/easing.js b/work/recovery-ui/recovery/static/scripts/lib/easing/easing.js new file mode 100644 index 0000000..3b9c776 --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/lib/easing/easing.js @@ -0,0 +1,168 @@ +/* + * jQuery Easing v1.4.1 - http://gsgd.co.uk/sandbox/jquery/easing/ + * Open source under the BSD License. + * Copyright © 2008 George McGinley Smith + * All rights reserved. + * https://raw.github.com/gdsmith/jquery-easing/master/LICENSE +*/ + +(function (factory) { + if (typeof define === "function" && define.amd) { + define(['jquery'], function ($) { + return factory($); + }); + } else if (typeof module === "object" && typeof module.exports === "object") { + exports = factory(require('jquery')); + } else { + factory(jQuery); + } +})(function($){ + +// Preserve the original jQuery "swing" easing as "jswing" +if (typeof $.easing !== 'undefined') { + $.easing['jswing'] = $.easing['swing']; +} + +var pow = Math.pow, + sqrt = Math.sqrt, + sin = Math.sin, + cos = Math.cos, + PI = Math.PI, + c1 = 1.70158, + c2 = c1 * 1.525, + c3 = c1 + 1, + c4 = ( 2 * PI ) / 3, + c5 = ( 2 * PI ) / 4.5; + +// x is the fraction of animation progress, in the range 0..1 +function bounceOut(x) { + var n1 = 7.5625, + d1 = 2.75; + if ( x < 1/d1 ) { + return n1*x*x; + } else if ( x < 2/d1 ) { + return n1*(x-=(1.5/d1))*x + .75; + } else if ( x < 2.5/d1 ) { + return n1*(x-=(2.25/d1))*x + .9375; + } else { + return n1*(x-=(2.625/d1))*x + .984375; + } +} + +$.extend( $.easing, +{ + def: 'easeOutQuad', + swing: function (x) { + return $.easing[$.easing.def](x); + }, + easeInQuad: function (x) { + return x * x; + }, + easeOutQuad: function (x) { + return 1 - ( 1 - x ) * ( 1 - x ); + }, + easeInOutQuad: function (x) { + return x < 0.5 ? + 2 * x * x : + 1 - pow( -2 * x + 2, 2 ) / 2; + }, + easeInCubic: function (x) { + return x * x * x; + }, + easeOutCubic: function (x) { + return 1 - pow( 1 - x, 3 ); + }, + easeInOutCubic: function (x) { + return x < 0.5 ? + 4 * x * x * x : + 1 - pow( -2 * x + 2, 3 ) / 2; + }, + easeInQuart: function (x) { + return x * x * x * x; + }, + easeOutQuart: function (x) { + return 1 - pow( 1 - x, 4 ); + }, + easeInOutQuart: function (x) { + return x < 0.5 ? + 8 * x * x * x * x : + 1 - pow( -2 * x + 2, 4 ) / 2; + }, + easeInQuint: function (x) { + return x * x * x * x * x; + }, + easeOutQuint: function (x) { + return 1 - pow( 1 - x, 5 ); + }, + easeInOutQuint: function (x) { + return x < 0.5 ? + 16 * x * x * x * x * x : + 1 - pow( -2 * x + 2, 5 ) / 2; + }, + easeInSine: function (x) { + return 1 - cos( x * PI/2 ); + }, + easeOutSine: function (x) { + return sin( x * PI/2 ); + }, + easeInOutSine: function (x) { + return -( cos( PI * x ) - 1 ) / 2; + }, + easeInExpo: function (x) { + return x === 0 ? 0 : pow( 2, 10 * x - 10 ); + }, + easeOutExpo: function (x) { + return x === 1 ? 1 : 1 - pow( 2, -10 * x ); + }, + easeInOutExpo: function (x) { + return x === 0 ? 0 : x === 1 ? 1 : x < 0.5 ? + pow( 2, 20 * x - 10 ) / 2 : + ( 2 - pow( 2, -20 * x + 10 ) ) / 2; + }, + easeInCirc: function (x) { + return 1 - sqrt( 1 - pow( x, 2 ) ); + }, + easeOutCirc: function (x) { + return sqrt( 1 - pow( x - 1, 2 ) ); + }, + easeInOutCirc: function (x) { + return x < 0.5 ? + ( 1 - sqrt( 1 - pow( 2 * x, 2 ) ) ) / 2 : + ( sqrt( 1 - pow( -2 * x + 2, 2 ) ) + 1 ) / 2; + }, + easeInElastic: function (x) { + return x === 0 ? 0 : x === 1 ? 1 : + -pow( 2, 10 * x - 10 ) * sin( ( x * 10 - 10.75 ) * c4 ); + }, + easeOutElastic: function (x) { + return x === 0 ? 0 : x === 1 ? 1 : + pow( 2, -10 * x ) * sin( ( x * 10 - 0.75 ) * c4 ) + 1; + }, + easeInOutElastic: function (x) { + return x === 0 ? 0 : x === 1 ? 1 : x < 0.5 ? + -( pow( 2, 20 * x - 10 ) * sin( ( 20 * x - 11.125 ) * c5 )) / 2 : + pow( 2, -20 * x + 10 ) * sin( ( 20 * x - 11.125 ) * c5 ) / 2 + 1; + }, + easeInBack: function (x) { + return c3 * x * x * x - c1 * x * x; + }, + easeOutBack: function (x) { + return 1 + c3 * pow( x - 1, 3 ) + c1 * pow( x - 1, 2 ); + }, + easeInOutBack: function (x) { + return x < 0.5 ? + ( pow( 2 * x, 2 ) * ( ( c2 + 1 ) * 2 * x - c2 ) ) / 2 : + ( pow( 2 * x - 2, 2 ) *( ( c2 + 1 ) * ( x * 2 - 2 ) + c2 ) + 2 ) / 2; + }, + easeInBounce: function (x) { + return 1 - bounceOut( 1 - x ); + }, + easeOutBounce: bounceOut, + easeInOutBounce: function (x) { + return x < 0.5 ? + ( 1 - bounceOut( 1 - 2 * x ) ) / 2 : + ( 1 + bounceOut( 2 * x - 1 ) ) / 2; + } +}); + +}); diff --git a/work/recovery-ui/recovery/static/scripts/lib/easing/easing.min.js b/work/recovery-ui/recovery/static/scripts/lib/easing/easing.min.js new file mode 100644 index 0000000..fc7dae4 --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/lib/easing/easing.min.js @@ -0,0 +1 @@ +!function(n){"function"==typeof define&&define.amd?define(["jquery"],function(e){return n(e)}):"object"==typeof module&&"object"==typeof module.exports?exports=n(require("jquery")):n(jQuery)}(function(n){function e(n){var e=7.5625,t=2.75;return n<1/t?e*n*n:n<2/t?e*(n-=1.5/t)*n+.75:n<2.5/t?e*(n-=2.25/t)*n+.9375:e*(n-=2.625/t)*n+.984375}void 0!==n.easing&&(n.easing.jswing=n.easing.swing);var t=Math.pow,u=Math.sqrt,r=Math.sin,i=Math.cos,a=Math.PI,c=1.70158,o=1.525*c,s=2*a/3,f=2*a/4.5;n.extend(n.easing,{def:"easeOutQuad",swing:function(e){return n.easing[n.easing.def](e)},easeInQuad:function(n){return n*n},easeOutQuad:function(n){return 1-(1-n)*(1-n)},easeInOutQuad:function(n){return n<.5?2*n*n:1-t(-2*n+2,2)/2},easeInCubic:function(n){return n*n*n},easeOutCubic:function(n){return 1-t(1-n,3)},easeInOutCubic:function(n){return n<.5?4*n*n*n:1-t(-2*n+2,3)/2},easeInQuart:function(n){return n*n*n*n},easeOutQuart:function(n){return 1-t(1-n,4)},easeInOutQuart:function(n){return n<.5?8*n*n*n*n:1-t(-2*n+2,4)/2},easeInQuint:function(n){return n*n*n*n*n},easeOutQuint:function(n){return 1-t(1-n,5)},easeInOutQuint:function(n){return n<.5?16*n*n*n*n*n:1-t(-2*n+2,5)/2},easeInSine:function(n){return 1-i(n*a/2)},easeOutSine:function(n){return r(n*a/2)},easeInOutSine:function(n){return-(i(a*n)-1)/2},easeInExpo:function(n){return 0===n?0:t(2,10*n-10)},easeOutExpo:function(n){return 1===n?1:1-t(2,-10*n)},easeInOutExpo:function(n){return 0===n?0:1===n?1:n<.5?t(2,20*n-10)/2:(2-t(2,-20*n+10))/2},easeInCirc:function(n){return 1-u(1-t(n,2))},easeOutCirc:function(n){return u(1-t(n-1,2))},easeInOutCirc:function(n){return n<.5?(1-u(1-t(2*n,2)))/2:(u(1-t(-2*n+2,2))+1)/2},easeInElastic:function(n){return 0===n?0:1===n?1:-t(2,10*n-10)*r((10*n-10.75)*s)},easeOutElastic:function(n){return 0===n?0:1===n?1:t(2,-10*n)*r((10*n-.75)*s)+1},easeInOutElastic:function(n){return 0===n?0:1===n?1:n<.5?-(t(2,20*n-10)*r((20*n-11.125)*f))/2:t(2,-20*n+10)*r((20*n-11.125)*f)/2+1},easeInBack:function(n){return(c+1)*n*n*n-c*n*n},easeOutBack:function(n){return 1+(c+1)*t(n-1,3)+c*t(n-1,2)},easeInOutBack:function(n){return n<.5?t(2*n,2)*(7.189819*n-o)/2:(t(2*n-2,2)*((o+1)*(2*n-2)+o)+2)/2},easeInBounce:function(n){return 1-e(1-n)},easeOutBounce:e,easeInOutBounce:function(n){return n<.5?(1-e(1-2*n))/2:(1+e(2*n-1))/2}})}); diff --git a/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/LICENSE b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/LICENSE new file mode 100644 index 0000000..699398c --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/LICENSE @@ -0,0 +1,23 @@ +Copyright (c) 2014 Owl +Modified work Copyright 2016 David Deutsch + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. diff --git a/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/ajax-loader.gif b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/ajax-loader.gif new file mode 100644 index 0000000..d3962f9 Binary files /dev/null and b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/ajax-loader.gif differ diff --git a/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.carousel.css b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.carousel.css new file mode 100644 index 0000000..9197373 --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.carousel.css @@ -0,0 +1,170 @@ +/** + * Owl Carousel v2.2.1 + * Copyright 2013-2017 David Deutsch + * Licensed under () + */ +/* + * Owl Carousel - Core + */ +.owl-carousel { + display: none; + width: 100%; + -webkit-tap-highlight-color: transparent; + /* position relative and z-index fix webkit rendering fonts issue */ + position: relative; + z-index: 1; } + .owl-carousel .owl-stage { + position: relative; + -ms-touch-action: pan-Y; + -moz-backface-visibility: hidden; + /* fix firefox animation glitch */ } + .owl-carousel .owl-stage:after { + content: "."; + display: block; + clear: both; + visibility: hidden; + line-height: 0; + height: 0; } + .owl-carousel .owl-stage-outer { + position: relative; + overflow: hidden; + /* fix for flashing background */ + -webkit-transform: translate3d(0px, 0px, 0px); } + .owl-carousel .owl-wrapper, + .owl-carousel .owl-item { + -webkit-backface-visibility: hidden; + -moz-backface-visibility: hidden; + -ms-backface-visibility: hidden; + -webkit-transform: translate3d(0, 0, 0); + -moz-transform: translate3d(0, 0, 0); + -ms-transform: translate3d(0, 0, 0); } + .owl-carousel .owl-item { + position: relative; + min-height: 1px; + float: left; + -webkit-backface-visibility: hidden; + -webkit-tap-highlight-color: transparent; + -webkit-touch-callout: none; } + .owl-carousel .owl-item img { + display: block; + width: 100%; } + .owl-carousel .owl-nav.disabled, + .owl-carousel .owl-dots.disabled { + display: none; } + .owl-carousel .owl-nav .owl-prev, + .owl-carousel .owl-nav .owl-next, + .owl-carousel .owl-dot { + cursor: pointer; + cursor: hand; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } + .owl-carousel.owl-loaded { + display: block; } + .owl-carousel.owl-loading { + opacity: 0; + display: block; } + .owl-carousel.owl-hidden { + opacity: 0; } + .owl-carousel.owl-refresh .owl-item { + visibility: hidden; } + .owl-carousel.owl-drag .owl-item { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } + .owl-carousel.owl-grab { + cursor: move; + cursor: grab; } + .owl-carousel.owl-rtl { + direction: rtl; } + .owl-carousel.owl-rtl .owl-item { + float: right; } + +/* No Js */ +.no-js .owl-carousel { + display: block; } + +/* + * Owl Carousel - Animate Plugin + */ +.owl-carousel .animated { + animation-duration: 1000ms; + animation-fill-mode: both; } + +.owl-carousel .owl-animated-in { + z-index: 0; } + +.owl-carousel .owl-animated-out { + z-index: 1; } + +.owl-carousel .fadeOut { + animation-name: fadeOut; } + +@keyframes fadeOut { + 0% { + opacity: 1; } + 100% { + opacity: 0; } } + +/* + * Owl Carousel - Auto Height Plugin + */ +.owl-height { + transition: height 500ms ease-in-out; } + +/* + * Owl Carousel - Lazy Load Plugin + */ +.owl-carousel .owl-item .owl-lazy { + opacity: 0; + transition: opacity 400ms ease; } + +.owl-carousel .owl-item img.owl-lazy { + transform-style: preserve-3d; } + +/* + * Owl Carousel - Video Plugin + */ +.owl-carousel .owl-video-wrapper { + position: relative; + height: 100%; + background: #000; } + +.owl-carousel .owl-video-play-icon { + position: absolute; + height: 80px; + width: 80px; + left: 50%; + top: 50%; + margin-left: -40px; + margin-top: -40px; + background: url("owl.video.play.png") no-repeat; + cursor: pointer; + z-index: 1; + -webkit-backface-visibility: hidden; + transition: transform 100ms ease; } + +.owl-carousel .owl-video-play-icon:hover { + -ms-transform: scale(1.3, 1.3); + transform: scale(1.3, 1.3); } + +.owl-carousel .owl-video-playing .owl-video-tn, +.owl-carousel .owl-video-playing .owl-video-play-icon { + display: none; } + +.owl-carousel .owl-video-tn { + opacity: 0; + height: 100%; + background-position: center center; + background-repeat: no-repeat; + background-size: contain; + transition: opacity 400ms ease; } + +.owl-carousel .owl-video-frame { + position: relative; + z-index: 1; + height: 100%; + width: 100%; } diff --git a/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.carousel.min.css b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.carousel.min.css new file mode 100644 index 0000000..1ece042 --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.carousel.min.css @@ -0,0 +1,6 @@ +/** + * Owl Carousel v2.2.1 + * Copyright 2013-2017 David Deutsch + * Licensed under () + */ +.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} \ No newline at end of file diff --git a/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.theme.default.css b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.theme.default.css new file mode 100644 index 0000000..a86c7ed --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.theme.default.css @@ -0,0 +1,49 @@ +/** + * Owl Carousel v2.2.1 + * Copyright 2013-2017 David Deutsch + * Licensed under () + */ +/* + * Default theme - Owl Carousel CSS File + */ +.owl-theme .owl-nav { + margin-top: 10px; + text-align: center; + -webkit-tap-highlight-color: transparent; } + .owl-theme .owl-nav [class*='owl-'] { + color: #FFF; + font-size: 14px; + margin: 5px; + padding: 4px 7px; + background: #D6D6D6; + display: inline-block; + cursor: pointer; + border-radius: 3px; } + .owl-theme .owl-nav [class*='owl-']:hover { + background: #869791; + color: #FFF; + text-decoration: none; } + .owl-theme .owl-nav .disabled { + opacity: 0.5; + cursor: default; } + +.owl-theme .owl-nav.disabled + .owl-dots { + margin-top: 10px; } + +.owl-theme .owl-dots { + text-align: center; + -webkit-tap-highlight-color: transparent; } + .owl-theme .owl-dots .owl-dot { + display: inline-block; + zoom: 1; } + .owl-theme .owl-dots .owl-dot span { + width: 10px; + height: 10px; + margin: 5px 7px; + background: #D6D6D6; + display: block; + -webkit-backface-visibility: visible; + transition: opacity 200ms ease; + border-radius: 30px; } + .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span { + background: #869791; } diff --git a/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.theme.default.min.css b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.theme.default.min.css new file mode 100644 index 0000000..5983603 --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.theme.default.min.css @@ -0,0 +1,6 @@ +/** + * Owl Carousel v2.2.1 + * Copyright 2013-2017 David Deutsch + * Licensed under () + */ +.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791} \ No newline at end of file diff --git a/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.theme.green.css b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.theme.green.css new file mode 100644 index 0000000..cddd4d9 --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.theme.green.css @@ -0,0 +1,49 @@ +/** + * Owl Carousel v2.2.1 + * Copyright 2013-2017 David Deutsch + * Licensed under () + */ +/* + * Green theme - Owl Carousel CSS File + */ +.owl-theme .owl-nav { + margin-top: 10px; + text-align: center; + -webkit-tap-highlight-color: transparent; } + .owl-theme .owl-nav [class*='owl-'] { + color: #FFF; + font-size: 14px; + margin: 5px; + padding: 4px 7px; + background: #D6D6D6; + display: inline-block; + cursor: pointer; + border-radius: 3px; } + .owl-theme .owl-nav [class*='owl-']:hover { + background: #4DC7A0; + color: #FFF; + text-decoration: none; } + .owl-theme .owl-nav .disabled { + opacity: 0.5; + cursor: default; } + +.owl-theme .owl-nav.disabled + .owl-dots { + margin-top: 10px; } + +.owl-theme .owl-dots { + text-align: center; + -webkit-tap-highlight-color: transparent; } + .owl-theme .owl-dots .owl-dot { + display: inline-block; + zoom: 1; } + .owl-theme .owl-dots .owl-dot span { + width: 10px; + height: 10px; + margin: 5px 7px; + background: #D6D6D6; + display: block; + -webkit-backface-visibility: visible; + transition: opacity 200ms ease; + border-radius: 30px; } + .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span { + background: #4DC7A0; } diff --git a/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.theme.green.min.css b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.theme.green.min.css new file mode 100644 index 0000000..1410c68 --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.theme.green.min.css @@ -0,0 +1,6 @@ +/** + * Owl Carousel v2.2.1 + * Copyright 2013-2017 David Deutsch + * Licensed under () + */ +.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#4DC7A0;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#4DC7A0} \ No newline at end of file diff --git a/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.video.play.png b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.video.play.png new file mode 100644 index 0000000..5d0218d Binary files /dev/null and b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/assets/owl.video.play.png differ diff --git a/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/owl.carousel.js b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/owl.carousel.js new file mode 100644 index 0000000..c1d3ea7 --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/owl.carousel.js @@ -0,0 +1,3275 @@ +/** + * Owl Carousel v2.2.1 + * Copyright 2013-2017 David Deutsch + * Licensed under () + */ +/** + * Owl carousel + * @version 2.1.6 + * @author Bartosz Wojciechowski + * @author David Deutsch + * @license The MIT License (MIT) + * @todo Lazy Load Icon + * @todo prevent animationend bubling + * @todo itemsScaleUp + * @todo Test Zepto + * @todo stagePadding calculate wrong active classes + */ +;(function($, window, document, undefined) { + + /** + * Creates a carousel. + * @class The Owl Carousel. + * @public + * @param {HTMLElement|jQuery} element - The element to create the carousel for. + * @param {Object} [options] - The options + */ + function Owl(element, options) { + + /** + * Current settings for the carousel. + * @public + */ + this.settings = null; + + /** + * Current options set by the caller including defaults. + * @public + */ + this.options = $.extend({}, Owl.Defaults, options); + + /** + * Plugin element. + * @public + */ + this.$element = $(element); + + /** + * Proxied event handlers. + * @protected + */ + this._handlers = {}; + + /** + * References to the running plugins of this carousel. + * @protected + */ + this._plugins = {}; + + /** + * Currently suppressed events to prevent them from beeing retriggered. + * @protected + */ + this._supress = {}; + + /** + * Absolute current position. + * @protected + */ + this._current = null; + + /** + * Animation speed in milliseconds. + * @protected + */ + this._speed = null; + + /** + * Coordinates of all items in pixel. + * @todo The name of this member is missleading. + * @protected + */ + this._coordinates = []; + + /** + * Current breakpoint. + * @todo Real media queries would be nice. + * @protected + */ + this._breakpoint = null; + + /** + * Current width of the plugin element. + */ + this._width = null; + + /** + * All real items. + * @protected + */ + this._items = []; + + /** + * All cloned items. + * @protected + */ + this._clones = []; + + /** + * Merge values of all items. + * @todo Maybe this could be part of a plugin. + * @protected + */ + this._mergers = []; + + /** + * Widths of all items. + */ + this._widths = []; + + /** + * Invalidated parts within the update process. + * @protected + */ + this._invalidated = {}; + + /** + * Ordered list of workers for the update process. + * @protected + */ + this._pipe = []; + + /** + * Current state information for the drag operation. + * @todo #261 + * @protected + */ + this._drag = { + time: null, + target: null, + pointer: null, + stage: { + start: null, + current: null + }, + direction: null + }; + + /** + * Current state information and their tags. + * @type {Object} + * @protected + */ + this._states = { + current: {}, + tags: { + 'initializing': [ 'busy' ], + 'animating': [ 'busy' ], + 'dragging': [ 'interacting' ] + } + }; + + $.each([ 'onResize', 'onThrottledResize' ], $.proxy(function(i, handler) { + this._handlers[handler] = $.proxy(this[handler], this); + }, this)); + + $.each(Owl.Plugins, $.proxy(function(key, plugin) { + this._plugins[key.charAt(0).toLowerCase() + key.slice(1)] + = new plugin(this); + }, this)); + + $.each(Owl.Workers, $.proxy(function(priority, worker) { + this._pipe.push({ + 'filter': worker.filter, + 'run': $.proxy(worker.run, this) + }); + }, this)); + + this.setup(); + this.initialize(); + } + + /** + * Default options for the carousel. + * @public + */ + Owl.Defaults = { + items: 3, + loop: false, + center: false, + rewind: false, + + mouseDrag: true, + touchDrag: true, + pullDrag: true, + freeDrag: false, + + margin: 0, + stagePadding: 0, + + merge: false, + mergeFit: true, + autoWidth: false, + + startPosition: 0, + rtl: false, + + smartSpeed: 250, + fluidSpeed: false, + dragEndSpeed: false, + + responsive: {}, + responsiveRefreshRate: 200, + responsiveBaseElement: window, + + fallbackEasing: 'swing', + + info: false, + + nestedItemSelector: false, + itemElement: 'div', + stageElement: 'div', + + refreshClass: 'owl-refresh', + loadedClass: 'owl-loaded', + loadingClass: 'owl-loading', + rtlClass: 'owl-rtl', + responsiveClass: 'owl-responsive', + dragClass: 'owl-drag', + itemClass: 'owl-item', + stageClass: 'owl-stage', + stageOuterClass: 'owl-stage-outer', + grabClass: 'owl-grab' + }; + + /** + * Enumeration for width. + * @public + * @readonly + * @enum {String} + */ + Owl.Width = { + Default: 'default', + Inner: 'inner', + Outer: 'outer' + }; + + /** + * Enumeration for types. + * @public + * @readonly + * @enum {String} + */ + Owl.Type = { + Event: 'event', + State: 'state' + }; + + /** + * Contains all registered plugins. + * @public + */ + Owl.Plugins = {}; + + /** + * List of workers involved in the update process. + */ + Owl.Workers = [ { + filter: [ 'width', 'settings' ], + run: function() { + this._width = this.$element.width(); + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function(cache) { + cache.current = this._items && this._items[this.relative(this._current)]; + } + }, { + filter: [ 'items', 'settings' ], + run: function() { + this.$stage.children('.cloned').remove(); + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function(cache) { + var margin = this.settings.margin || '', + grid = !this.settings.autoWidth, + rtl = this.settings.rtl, + css = { + 'width': 'auto', + 'margin-left': rtl ? margin : '', + 'margin-right': rtl ? '' : margin + }; + + !grid && this.$stage.children().css(css); + + cache.css = css; + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function(cache) { + var width = (this.width() / this.settings.items).toFixed(3) - this.settings.margin, + merge = null, + iterator = this._items.length, + grid = !this.settings.autoWidth, + widths = []; + + cache.items = { + merge: false, + width: width + }; + + while (iterator--) { + merge = this._mergers[iterator]; + merge = this.settings.mergeFit && Math.min(merge, this.settings.items) || merge; + + cache.items.merge = merge > 1 || cache.items.merge; + + widths[iterator] = !grid ? this._items[iterator].width() : width * merge; + } + + this._widths = widths; + } + }, { + filter: [ 'items', 'settings' ], + run: function() { + var clones = [], + items = this._items, + settings = this.settings, + // TODO: Should be computed from number of min width items in stage + view = Math.max(settings.items * 2, 4), + size = Math.ceil(items.length / 2) * 2, + repeat = settings.loop && items.length ? settings.rewind ? view : Math.max(view, size) : 0, + append = '', + prepend = ''; + + repeat /= 2; + + while (repeat--) { + // Switch to only using appended clones + clones.push(this.normalize(clones.length / 2, true)); + append = append + items[clones[clones.length - 1]][0].outerHTML; + clones.push(this.normalize(items.length - 1 - (clones.length - 1) / 2, true)); + prepend = items[clones[clones.length - 1]][0].outerHTML + prepend; + } + + this._clones = clones; + + $(append).addClass('cloned').appendTo(this.$stage); + $(prepend).addClass('cloned').prependTo(this.$stage); + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function() { + var rtl = this.settings.rtl ? 1 : -1, + size = this._clones.length + this._items.length, + iterator = -1, + previous = 0, + current = 0, + coordinates = []; + + while (++iterator < size) { + previous = coordinates[iterator - 1] || 0; + current = this._widths[this.relative(iterator)] + this.settings.margin; + coordinates.push(previous + current * rtl); + } + + this._coordinates = coordinates; + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function() { + var padding = this.settings.stagePadding, + coordinates = this._coordinates, + css = { + 'width': Math.ceil(Math.abs(coordinates[coordinates.length - 1])) + padding * 2, + 'padding-left': padding || '', + 'padding-right': padding || '' + }; + + this.$stage.css(css); + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function(cache) { + var iterator = this._coordinates.length, + grid = !this.settings.autoWidth, + items = this.$stage.children(); + + if (grid && cache.items.merge) { + while (iterator--) { + cache.css.width = this._widths[this.relative(iterator)]; + items.eq(iterator).css(cache.css); + } + } else if (grid) { + cache.css.width = cache.items.width; + items.css(cache.css); + } + } + }, { + filter: [ 'items' ], + run: function() { + this._coordinates.length < 1 && this.$stage.removeAttr('style'); + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function(cache) { + cache.current = cache.current ? this.$stage.children().index(cache.current) : 0; + cache.current = Math.max(this.minimum(), Math.min(this.maximum(), cache.current)); + this.reset(cache.current); + } + }, { + filter: [ 'position' ], + run: function() { + this.animate(this.coordinates(this._current)); + } + }, { + filter: [ 'width', 'position', 'items', 'settings' ], + run: function() { + var rtl = this.settings.rtl ? 1 : -1, + padding = this.settings.stagePadding * 2, + begin = this.coordinates(this.current()) + padding, + end = begin + this.width() * rtl, + inner, outer, matches = [], i, n; + + for (i = 0, n = this._coordinates.length; i < n; i++) { + inner = this._coordinates[i - 1] || 0; + outer = Math.abs(this._coordinates[i]) + padding * rtl; + + if ((this.op(inner, '<=', begin) && (this.op(inner, '>', end))) + || (this.op(outer, '<', begin) && this.op(outer, '>', end))) { + matches.push(i); + } + } + + this.$stage.children('.active').removeClass('active'); + this.$stage.children(':eq(' + matches.join('), :eq(') + ')').addClass('active'); + + if (this.settings.center) { + this.$stage.children('.center').removeClass('center'); + this.$stage.children().eq(this.current()).addClass('center'); + } + } + } ]; + + /** + * Initializes the carousel. + * @protected + */ + Owl.prototype.initialize = function() { + this.enter('initializing'); + this.trigger('initialize'); + + this.$element.toggleClass(this.settings.rtlClass, this.settings.rtl); + + if (this.settings.autoWidth && !this.is('pre-loading')) { + var imgs, nestedSelector, width; + imgs = this.$element.find('img'); + nestedSelector = this.settings.nestedItemSelector ? '.' + this.settings.nestedItemSelector : undefined; + width = this.$element.children(nestedSelector).width(); + + if (imgs.length && width <= 0) { + this.preloadAutoWidthImages(imgs); + } + } + + this.$element.addClass(this.options.loadingClass); + + // create stage + this.$stage = $('<' + this.settings.stageElement + ' class="' + this.settings.stageClass + '"/>') + .wrap('
'); + + // append stage + this.$element.append(this.$stage.parent()); + + // append content + this.replace(this.$element.children().not(this.$stage.parent())); + + // check visibility + if (this.$element.is(':visible')) { + // update view + this.refresh(); + } else { + // invalidate width + this.invalidate('width'); + } + + this.$element + .removeClass(this.options.loadingClass) + .addClass(this.options.loadedClass); + + // register event handlers + this.registerEventHandlers(); + + this.leave('initializing'); + this.trigger('initialized'); + }; + + /** + * Setups the current settings. + * @todo Remove responsive classes. Why should adaptive designs be brought into IE8? + * @todo Support for media queries by using `matchMedia` would be nice. + * @public + */ + Owl.prototype.setup = function() { + var viewport = this.viewport(), + overwrites = this.options.responsive, + match = -1, + settings = null; + + if (!overwrites) { + settings = $.extend({}, this.options); + } else { + $.each(overwrites, function(breakpoint) { + if (breakpoint <= viewport && breakpoint > match) { + match = Number(breakpoint); + } + }); + + settings = $.extend({}, this.options, overwrites[match]); + if (typeof settings.stagePadding === 'function') { + settings.stagePadding = settings.stagePadding(); + } + delete settings.responsive; + + // responsive class + if (settings.responsiveClass) { + this.$element.attr('class', + this.$element.attr('class').replace(new RegExp('(' + this.options.responsiveClass + '-)\\S+\\s', 'g'), '$1' + match) + ); + } + } + + this.trigger('change', { property: { name: 'settings', value: settings } }); + this._breakpoint = match; + this.settings = settings; + this.invalidate('settings'); + this.trigger('changed', { property: { name: 'settings', value: this.settings } }); + }; + + /** + * Updates option logic if necessery. + * @protected + */ + Owl.prototype.optionsLogic = function() { + if (this.settings.autoWidth) { + this.settings.stagePadding = false; + this.settings.merge = false; + } + }; + + /** + * Prepares an item before add. + * @todo Rename event parameter `content` to `item`. + * @protected + * @returns {jQuery|HTMLElement} - The item container. + */ + Owl.prototype.prepare = function(item) { + var event = this.trigger('prepare', { content: item }); + + if (!event.data) { + event.data = $('<' + this.settings.itemElement + '/>') + .addClass(this.options.itemClass).append(item) + } + + this.trigger('prepared', { content: event.data }); + + return event.data; + }; + + /** + * Updates the view. + * @public + */ + Owl.prototype.update = function() { + var i = 0, + n = this._pipe.length, + filter = $.proxy(function(p) { return this[p] }, this._invalidated), + cache = {}; + + while (i < n) { + if (this._invalidated.all || $.grep(this._pipe[i].filter, filter).length > 0) { + this._pipe[i].run(cache); + } + i++; + } + + this._invalidated = {}; + + !this.is('valid') && this.enter('valid'); + }; + + /** + * Gets the width of the view. + * @public + * @param {Owl.Width} [dimension=Owl.Width.Default] - The dimension to return. + * @returns {Number} - The width of the view in pixel. + */ + Owl.prototype.width = function(dimension) { + dimension = dimension || Owl.Width.Default; + switch (dimension) { + case Owl.Width.Inner: + case Owl.Width.Outer: + return this._width; + default: + return this._width - this.settings.stagePadding * 2 + this.settings.margin; + } + }; + + /** + * Refreshes the carousel primarily for adaptive purposes. + * @public + */ + Owl.prototype.refresh = function() { + this.enter('refreshing'); + this.trigger('refresh'); + + this.setup(); + + this.optionsLogic(); + + this.$element.addClass(this.options.refreshClass); + + this.update(); + + this.$element.removeClass(this.options.refreshClass); + + this.leave('refreshing'); + this.trigger('refreshed'); + }; + + /** + * Checks window `resize` event. + * @protected + */ + Owl.prototype.onThrottledResize = function() { + window.clearTimeout(this.resizeTimer); + this.resizeTimer = window.setTimeout(this._handlers.onResize, this.settings.responsiveRefreshRate); + }; + + /** + * Checks window `resize` event. + * @protected + */ + Owl.prototype.onResize = function() { + if (!this._items.length) { + return false; + } + + if (this._width === this.$element.width()) { + return false; + } + + if (!this.$element.is(':visible')) { + return false; + } + + this.enter('resizing'); + + if (this.trigger('resize').isDefaultPrevented()) { + this.leave('resizing'); + return false; + } + + this.invalidate('width'); + + this.refresh(); + + this.leave('resizing'); + this.trigger('resized'); + }; + + /** + * Registers event handlers. + * @todo Check `msPointerEnabled` + * @todo #261 + * @protected + */ + Owl.prototype.registerEventHandlers = function() { + if ($.support.transition) { + this.$stage.on($.support.transition.end + '.owl.core', $.proxy(this.onTransitionEnd, this)); + } + + if (this.settings.responsive !== false) { + this.on(window, 'resize', this._handlers.onThrottledResize); + } + + if (this.settings.mouseDrag) { + this.$element.addClass(this.options.dragClass); + this.$stage.on('mousedown.owl.core', $.proxy(this.onDragStart, this)); + this.$stage.on('dragstart.owl.core selectstart.owl.core', function() { return false }); + } + + if (this.settings.touchDrag){ + this.$stage.on('touchstart.owl.core', $.proxy(this.onDragStart, this)); + this.$stage.on('touchcancel.owl.core', $.proxy(this.onDragEnd, this)); + } + }; + + /** + * Handles `touchstart` and `mousedown` events. + * @todo Horizontal swipe threshold as option + * @todo #261 + * @protected + * @param {Event} event - The event arguments. + */ + Owl.prototype.onDragStart = function(event) { + var stage = null; + + if (event.which === 3) { + return; + } + + if ($.support.transform) { + stage = this.$stage.css('transform').replace(/.*\(|\)| /g, '').split(','); + stage = { + x: stage[stage.length === 16 ? 12 : 4], + y: stage[stage.length === 16 ? 13 : 5] + }; + } else { + stage = this.$stage.position(); + stage = { + x: this.settings.rtl ? + stage.left + this.$stage.width() - this.width() + this.settings.margin : + stage.left, + y: stage.top + }; + } + + if (this.is('animating')) { + $.support.transform ? this.animate(stage.x) : this.$stage.stop() + this.invalidate('position'); + } + + this.$element.toggleClass(this.options.grabClass, event.type === 'mousedown'); + + this.speed(0); + + this._drag.time = new Date().getTime(); + this._drag.target = $(event.target); + this._drag.stage.start = stage; + this._drag.stage.current = stage; + this._drag.pointer = this.pointer(event); + + $(document).on('mouseup.owl.core touchend.owl.core', $.proxy(this.onDragEnd, this)); + + $(document).one('mousemove.owl.core touchmove.owl.core', $.proxy(function(event) { + var delta = this.difference(this._drag.pointer, this.pointer(event)); + + $(document).on('mousemove.owl.core touchmove.owl.core', $.proxy(this.onDragMove, this)); + + if (Math.abs(delta.x) < Math.abs(delta.y) && this.is('valid')) { + return; + } + + event.preventDefault(); + + this.enter('dragging'); + this.trigger('drag'); + }, this)); + }; + + /** + * Handles the `touchmove` and `mousemove` events. + * @todo #261 + * @protected + * @param {Event} event - The event arguments. + */ + Owl.prototype.onDragMove = function(event) { + var minimum = null, + maximum = null, + pull = null, + delta = this.difference(this._drag.pointer, this.pointer(event)), + stage = this.difference(this._drag.stage.start, delta); + + if (!this.is('dragging')) { + return; + } + + event.preventDefault(); + + if (this.settings.loop) { + minimum = this.coordinates(this.minimum()); + maximum = this.coordinates(this.maximum() + 1) - minimum; + stage.x = (((stage.x - minimum) % maximum + maximum) % maximum) + minimum; + } else { + minimum = this.settings.rtl ? this.coordinates(this.maximum()) : this.coordinates(this.minimum()); + maximum = this.settings.rtl ? this.coordinates(this.minimum()) : this.coordinates(this.maximum()); + pull = this.settings.pullDrag ? -1 * delta.x / 5 : 0; + stage.x = Math.max(Math.min(stage.x, minimum + pull), maximum + pull); + } + + this._drag.stage.current = stage; + + this.animate(stage.x); + }; + + /** + * Handles the `touchend` and `mouseup` events. + * @todo #261 + * @todo Threshold for click event + * @protected + * @param {Event} event - The event arguments. + */ + Owl.prototype.onDragEnd = function(event) { + var delta = this.difference(this._drag.pointer, this.pointer(event)), + stage = this._drag.stage.current, + direction = delta.x > 0 ^ this.settings.rtl ? 'left' : 'right'; + + $(document).off('.owl.core'); + + this.$element.removeClass(this.options.grabClass); + + if (delta.x !== 0 && this.is('dragging') || !this.is('valid')) { + this.speed(this.settings.dragEndSpeed || this.settings.smartSpeed); + this.current(this.closest(stage.x, delta.x !== 0 ? direction : this._drag.direction)); + this.invalidate('position'); + this.update(); + + this._drag.direction = direction; + + if (Math.abs(delta.x) > 3 || new Date().getTime() - this._drag.time > 300) { + this._drag.target.one('click.owl.core', function() { return false; }); + } + } + + if (!this.is('dragging')) { + return; + } + + this.leave('dragging'); + this.trigger('dragged'); + }; + + /** + * Gets absolute position of the closest item for a coordinate. + * @todo Setting `freeDrag` makes `closest` not reusable. See #165. + * @protected + * @param {Number} coordinate - The coordinate in pixel. + * @param {String} direction - The direction to check for the closest item. Ether `left` or `right`. + * @return {Number} - The absolute position of the closest item. + */ + Owl.prototype.closest = function(coordinate, direction) { + var position = -1, + pull = 30, + width = this.width(), + coordinates = this.coordinates(); + + if (!this.settings.freeDrag) { + // check closest item + $.each(coordinates, $.proxy(function(index, value) { + // on a left pull, check on current index + if (direction === 'left' && coordinate > value - pull && coordinate < value + pull) { + position = index; + // on a right pull, check on previous index + // to do so, subtract width from value and set position = index + 1 + } else if (direction === 'right' && coordinate > value - width - pull && coordinate < value - width + pull) { + position = index + 1; + } else if (this.op(coordinate, '<', value) + && this.op(coordinate, '>', coordinates[index + 1] || value - width)) { + position = direction === 'left' ? index + 1 : index; + } + return position === -1; + }, this)); + } + + if (!this.settings.loop) { + // non loop boundries + if (this.op(coordinate, '>', coordinates[this.minimum()])) { + position = coordinate = this.minimum(); + } else if (this.op(coordinate, '<', coordinates[this.maximum()])) { + position = coordinate = this.maximum(); + } + } + + return position; + }; + + /** + * Animates the stage. + * @todo #270 + * @public + * @param {Number} coordinate - The coordinate in pixels. + */ + Owl.prototype.animate = function(coordinate) { + var animate = this.speed() > 0; + + this.is('animating') && this.onTransitionEnd(); + + if (animate) { + this.enter('animating'); + this.trigger('translate'); + } + + if ($.support.transform3d && $.support.transition) { + this.$stage.css({ + transform: 'translate3d(' + coordinate + 'px,0px,0px)', + transition: (this.speed() / 1000) + 's' + }); + } else if (animate) { + this.$stage.animate({ + left: coordinate + 'px' + }, this.speed(), this.settings.fallbackEasing, $.proxy(this.onTransitionEnd, this)); + } else { + this.$stage.css({ + left: coordinate + 'px' + }); + } + }; + + /** + * Checks whether the carousel is in a specific state or not. + * @param {String} state - The state to check. + * @returns {Boolean} - The flag which indicates if the carousel is busy. + */ + Owl.prototype.is = function(state) { + return this._states.current[state] && this._states.current[state] > 0; + }; + + /** + * Sets the absolute position of the current item. + * @public + * @param {Number} [position] - The new absolute position or nothing to leave it unchanged. + * @returns {Number} - The absolute position of the current item. + */ + Owl.prototype.current = function(position) { + if (position === undefined) { + return this._current; + } + + if (this._items.length === 0) { + return undefined; + } + + position = this.normalize(position); + + if (this._current !== position) { + var event = this.trigger('change', { property: { name: 'position', value: position } }); + + if (event.data !== undefined) { + position = this.normalize(event.data); + } + + this._current = position; + + this.invalidate('position'); + + this.trigger('changed', { property: { name: 'position', value: this._current } }); + } + + return this._current; + }; + + /** + * Invalidates the given part of the update routine. + * @param {String} [part] - The part to invalidate. + * @returns {Array.} - The invalidated parts. + */ + Owl.prototype.invalidate = function(part) { + if ($.type(part) === 'string') { + this._invalidated[part] = true; + this.is('valid') && this.leave('valid'); + } + return $.map(this._invalidated, function(v, i) { return i }); + }; + + /** + * Resets the absolute position of the current item. + * @public + * @param {Number} position - The absolute position of the new item. + */ + Owl.prototype.reset = function(position) { + position = this.normalize(position); + + if (position === undefined) { + return; + } + + this._speed = 0; + this._current = position; + + this.suppress([ 'translate', 'translated' ]); + + this.animate(this.coordinates(position)); + + this.release([ 'translate', 'translated' ]); + }; + + /** + * Normalizes an absolute or a relative position of an item. + * @public + * @param {Number} position - The absolute or relative position to normalize. + * @param {Boolean} [relative=false] - Whether the given position is relative or not. + * @returns {Number} - The normalized position. + */ + Owl.prototype.normalize = function(position, relative) { + var n = this._items.length, + m = relative ? 0 : this._clones.length; + + if (!this.isNumeric(position) || n < 1) { + position = undefined; + } else if (position < 0 || position >= n + m) { + position = ((position - m / 2) % n + n) % n + m / 2; + } + + return position; + }; + + /** + * Converts an absolute position of an item into a relative one. + * @public + * @param {Number} position - The absolute position to convert. + * @returns {Number} - The converted position. + */ + Owl.prototype.relative = function(position) { + position -= this._clones.length / 2; + return this.normalize(position, true); + }; + + /** + * Gets the maximum position for the current item. + * @public + * @param {Boolean} [relative=false] - Whether to return an absolute position or a relative position. + * @returns {Number} + */ + Owl.prototype.maximum = function(relative) { + var settings = this.settings, + maximum = this._coordinates.length, + iterator, + reciprocalItemsWidth, + elementWidth; + + if (settings.loop) { + maximum = this._clones.length / 2 + this._items.length - 1; + } else if (settings.autoWidth || settings.merge) { + iterator = this._items.length; + reciprocalItemsWidth = this._items[--iterator].width(); + elementWidth = this.$element.width(); + while (iterator--) { + reciprocalItemsWidth += this._items[iterator].width() + this.settings.margin; + if (reciprocalItemsWidth > elementWidth) { + break; + } + } + maximum = iterator + 1; + } else if (settings.center) { + maximum = this._items.length - 1; + } else { + maximum = this._items.length - settings.items; + } + + if (relative) { + maximum -= this._clones.length / 2; + } + + return Math.max(maximum, 0); + }; + + /** + * Gets the minimum position for the current item. + * @public + * @param {Boolean} [relative=false] - Whether to return an absolute position or a relative position. + * @returns {Number} + */ + Owl.prototype.minimum = function(relative) { + return relative ? 0 : this._clones.length / 2; + }; + + /** + * Gets an item at the specified relative position. + * @public + * @param {Number} [position] - The relative position of the item. + * @return {jQuery|Array.} - The item at the given position or all items if no position was given. + */ + Owl.prototype.items = function(position) { + if (position === undefined) { + return this._items.slice(); + } + + position = this.normalize(position, true); + return this._items[position]; + }; + + /** + * Gets an item at the specified relative position. + * @public + * @param {Number} [position] - The relative position of the item. + * @return {jQuery|Array.} - The item at the given position or all items if no position was given. + */ + Owl.prototype.mergers = function(position) { + if (position === undefined) { + return this._mergers.slice(); + } + + position = this.normalize(position, true); + return this._mergers[position]; + }; + + /** + * Gets the absolute positions of clones for an item. + * @public + * @param {Number} [position] - The relative position of the item. + * @returns {Array.} - The absolute positions of clones for the item or all if no position was given. + */ + Owl.prototype.clones = function(position) { + var odd = this._clones.length / 2, + even = odd + this._items.length, + map = function(index) { return index % 2 === 0 ? even + index / 2 : odd - (index + 1) / 2 }; + + if (position === undefined) { + return $.map(this._clones, function(v, i) { return map(i) }); + } + + return $.map(this._clones, function(v, i) { return v === position ? map(i) : null }); + }; + + /** + * Sets the current animation speed. + * @public + * @param {Number} [speed] - The animation speed in milliseconds or nothing to leave it unchanged. + * @returns {Number} - The current animation speed in milliseconds. + */ + Owl.prototype.speed = function(speed) { + if (speed !== undefined) { + this._speed = speed; + } + + return this._speed; + }; + + /** + * Gets the coordinate of an item. + * @todo The name of this method is missleanding. + * @public + * @param {Number} position - The absolute position of the item within `minimum()` and `maximum()`. + * @returns {Number|Array.} - The coordinate of the item in pixel or all coordinates. + */ + Owl.prototype.coordinates = function(position) { + var multiplier = 1, + newPosition = position - 1, + coordinate; + + if (position === undefined) { + return $.map(this._coordinates, $.proxy(function(coordinate, index) { + return this.coordinates(index); + }, this)); + } + + if (this.settings.center) { + if (this.settings.rtl) { + multiplier = -1; + newPosition = position + 1; + } + + coordinate = this._coordinates[position]; + coordinate += (this.width() - coordinate + (this._coordinates[newPosition] || 0)) / 2 * multiplier; + } else { + coordinate = this._coordinates[newPosition] || 0; + } + + coordinate = Math.ceil(coordinate); + + return coordinate; + }; + + /** + * Calculates the speed for a translation. + * @protected + * @param {Number} from - The absolute position of the start item. + * @param {Number} to - The absolute position of the target item. + * @param {Number} [factor=undefined] - The time factor in milliseconds. + * @returns {Number} - The time in milliseconds for the translation. + */ + Owl.prototype.duration = function(from, to, factor) { + if (factor === 0) { + return 0; + } + + return Math.min(Math.max(Math.abs(to - from), 1), 6) * Math.abs((factor || this.settings.smartSpeed)); + }; + + /** + * Slides to the specified item. + * @public + * @param {Number} position - The position of the item. + * @param {Number} [speed] - The time in milliseconds for the transition. + */ + Owl.prototype.to = function(position, speed) { + var current = this.current(), + revert = null, + distance = position - this.relative(current), + direction = (distance > 0) - (distance < 0), + items = this._items.length, + minimum = this.minimum(), + maximum = this.maximum(); + + if (this.settings.loop) { + if (!this.settings.rewind && Math.abs(distance) > items / 2) { + distance += direction * -1 * items; + } + + position = current + distance; + revert = ((position - minimum) % items + items) % items + minimum; + + if (revert !== position && revert - distance <= maximum && revert - distance > 0) { + current = revert - distance; + position = revert; + this.reset(current); + } + } else if (this.settings.rewind) { + maximum += 1; + position = (position % maximum + maximum) % maximum; + } else { + position = Math.max(minimum, Math.min(maximum, position)); + } + + this.speed(this.duration(current, position, speed)); + this.current(position); + + if (this.$element.is(':visible')) { + this.update(); + } + }; + + /** + * Slides to the next item. + * @public + * @param {Number} [speed] - The time in milliseconds for the transition. + */ + Owl.prototype.next = function(speed) { + speed = speed || false; + this.to(this.relative(this.current()) + 1, speed); + }; + + /** + * Slides to the previous item. + * @public + * @param {Number} [speed] - The time in milliseconds for the transition. + */ + Owl.prototype.prev = function(speed) { + speed = speed || false; + this.to(this.relative(this.current()) - 1, speed); + }; + + /** + * Handles the end of an animation. + * @protected + * @param {Event} event - The event arguments. + */ + Owl.prototype.onTransitionEnd = function(event) { + + // if css2 animation then event object is undefined + if (event !== undefined) { + event.stopPropagation(); + + // Catch only owl-stage transitionEnd event + if ((event.target || event.srcElement || event.originalTarget) !== this.$stage.get(0)) { + return false; + } + } + + this.leave('animating'); + this.trigger('translated'); + }; + + /** + * Gets viewport width. + * @protected + * @return {Number} - The width in pixel. + */ + Owl.prototype.viewport = function() { + var width; + if (this.options.responsiveBaseElement !== window) { + width = $(this.options.responsiveBaseElement).width(); + } else if (window.innerWidth) { + width = window.innerWidth; + } else if (document.documentElement && document.documentElement.clientWidth) { + width = document.documentElement.clientWidth; + } else { + console.warn('Can not detect viewport width.'); + } + return width; + }; + + /** + * Replaces the current content. + * @public + * @param {HTMLElement|jQuery|String} content - The new content. + */ + Owl.prototype.replace = function(content) { + this.$stage.empty(); + this._items = []; + + if (content) { + content = (content instanceof jQuery) ? content : $(content); + } + + if (this.settings.nestedItemSelector) { + content = content.find('.' + this.settings.nestedItemSelector); + } + + content.filter(function() { + return this.nodeType === 1; + }).each($.proxy(function(index, item) { + item = this.prepare(item); + this.$stage.append(item); + this._items.push(item); + this._mergers.push(item.find('[data-merge]').addBack('[data-merge]').attr('data-merge') * 1 || 1); + }, this)); + + this.reset(this.isNumeric(this.settings.startPosition) ? this.settings.startPosition : 0); + + this.invalidate('items'); + }; + + /** + * Adds an item. + * @todo Use `item` instead of `content` for the event arguments. + * @public + * @param {HTMLElement|jQuery|String} content - The item content to add. + * @param {Number} [position] - The relative position at which to insert the item otherwise the item will be added to the end. + */ + Owl.prototype.add = function(content, position) { + var current = this.relative(this._current); + + position = position === undefined ? this._items.length : this.normalize(position, true); + content = content instanceof jQuery ? content : $(content); + + this.trigger('add', { content: content, position: position }); + + content = this.prepare(content); + + if (this._items.length === 0 || position === this._items.length) { + this._items.length === 0 && this.$stage.append(content); + this._items.length !== 0 && this._items[position - 1].after(content); + this._items.push(content); + this._mergers.push(content.find('[data-merge]').addBack('[data-merge]').attr('data-merge') * 1 || 1); + } else { + this._items[position].before(content); + this._items.splice(position, 0, content); + this._mergers.splice(position, 0, content.find('[data-merge]').addBack('[data-merge]').attr('data-merge') * 1 || 1); + } + + this._items[current] && this.reset(this._items[current].index()); + + this.invalidate('items'); + + this.trigger('added', { content: content, position: position }); + }; + + /** + * Removes an item by its position. + * @todo Use `item` instead of `content` for the event arguments. + * @public + * @param {Number} position - The relative position of the item to remove. + */ + Owl.prototype.remove = function(position) { + position = this.normalize(position, true); + + if (position === undefined) { + return; + } + + this.trigger('remove', { content: this._items[position], position: position }); + + this._items[position].remove(); + this._items.splice(position, 1); + this._mergers.splice(position, 1); + + this.invalidate('items'); + + this.trigger('removed', { content: null, position: position }); + }; + + /** + * Preloads images with auto width. + * @todo Replace by a more generic approach + * @protected + */ + Owl.prototype.preloadAutoWidthImages = function(images) { + images.each($.proxy(function(i, element) { + this.enter('pre-loading'); + element = $(element); + $(new Image()).one('load', $.proxy(function(e) { + element.attr('src', e.target.src); + element.css('opacity', 1); + this.leave('pre-loading'); + !this.is('pre-loading') && !this.is('initializing') && this.refresh(); + }, this)).attr('src', element.attr('src') || element.attr('data-src') || element.attr('data-src-retina')); + }, this)); + }; + + /** + * Destroys the carousel. + * @public + */ + Owl.prototype.destroy = function() { + + this.$element.off('.owl.core'); + this.$stage.off('.owl.core'); + $(document).off('.owl.core'); + + if (this.settings.responsive !== false) { + window.clearTimeout(this.resizeTimer); + this.off(window, 'resize', this._handlers.onThrottledResize); + } + + for (var i in this._plugins) { + this._plugins[i].destroy(); + } + + this.$stage.children('.cloned').remove(); + + this.$stage.unwrap(); + this.$stage.children().contents().unwrap(); + this.$stage.children().unwrap(); + + this.$element + .removeClass(this.options.refreshClass) + .removeClass(this.options.loadingClass) + .removeClass(this.options.loadedClass) + .removeClass(this.options.rtlClass) + .removeClass(this.options.dragClass) + .removeClass(this.options.grabClass) + .attr('class', this.$element.attr('class').replace(new RegExp(this.options.responsiveClass + '-\\S+\\s', 'g'), '')) + .removeData('owl.carousel'); + }; + + /** + * Operators to calculate right-to-left and left-to-right. + * @protected + * @param {Number} [a] - The left side operand. + * @param {String} [o] - The operator. + * @param {Number} [b] - The right side operand. + */ + Owl.prototype.op = function(a, o, b) { + var rtl = this.settings.rtl; + switch (o) { + case '<': + return rtl ? a > b : a < b; + case '>': + return rtl ? a < b : a > b; + case '>=': + return rtl ? a <= b : a >= b; + case '<=': + return rtl ? a >= b : a <= b; + default: + break; + } + }; + + /** + * Attaches to an internal event. + * @protected + * @param {HTMLElement} element - The event source. + * @param {String} event - The event name. + * @param {Function} listener - The event handler to attach. + * @param {Boolean} capture - Wether the event should be handled at the capturing phase or not. + */ + Owl.prototype.on = function(element, event, listener, capture) { + if (element.addEventListener) { + element.addEventListener(event, listener, capture); + } else if (element.attachEvent) { + element.attachEvent('on' + event, listener); + } + }; + + /** + * Detaches from an internal event. + * @protected + * @param {HTMLElement} element - The event source. + * @param {String} event - The event name. + * @param {Function} listener - The attached event handler to detach. + * @param {Boolean} capture - Wether the attached event handler was registered as a capturing listener or not. + */ + Owl.prototype.off = function(element, event, listener, capture) { + if (element.removeEventListener) { + element.removeEventListener(event, listener, capture); + } else if (element.detachEvent) { + element.detachEvent('on' + event, listener); + } + }; + + /** + * Triggers a public event. + * @todo Remove `status`, `relatedTarget` should be used instead. + * @protected + * @param {String} name - The event name. + * @param {*} [data=null] - The event data. + * @param {String} [namespace=carousel] - The event namespace. + * @param {String} [state] - The state which is associated with the event. + * @param {Boolean} [enter=false] - Indicates if the call enters the specified state or not. + * @returns {Event} - The event arguments. + */ + Owl.prototype.trigger = function(name, data, namespace, state, enter) { + var status = { + item: { count: this._items.length, index: this.current() } + }, handler = $.camelCase( + $.grep([ 'on', name, namespace ], function(v) { return v }) + .join('-').toLowerCase() + ), event = $.Event( + [ name, 'owl', namespace || 'carousel' ].join('.').toLowerCase(), + $.extend({ relatedTarget: this }, status, data) + ); + + if (!this._supress[name]) { + $.each(this._plugins, function(name, plugin) { + if (plugin.onTrigger) { + plugin.onTrigger(event); + } + }); + + this.register({ type: Owl.Type.Event, name: name }); + this.$element.trigger(event); + + if (this.settings && typeof this.settings[handler] === 'function') { + this.settings[handler].call(this, event); + } + } + + return event; + }; + + /** + * Enters a state. + * @param name - The state name. + */ + Owl.prototype.enter = function(name) { + $.each([ name ].concat(this._states.tags[name] || []), $.proxy(function(i, name) { + if (this._states.current[name] === undefined) { + this._states.current[name] = 0; + } + + this._states.current[name]++; + }, this)); + }; + + /** + * Leaves a state. + * @param name - The state name. + */ + Owl.prototype.leave = function(name) { + $.each([ name ].concat(this._states.tags[name] || []), $.proxy(function(i, name) { + this._states.current[name]--; + }, this)); + }; + + /** + * Registers an event or state. + * @public + * @param {Object} object - The event or state to register. + */ + Owl.prototype.register = function(object) { + if (object.type === Owl.Type.Event) { + if (!$.event.special[object.name]) { + $.event.special[object.name] = {}; + } + + if (!$.event.special[object.name].owl) { + var _default = $.event.special[object.name]._default; + $.event.special[object.name]._default = function(e) { + if (_default && _default.apply && (!e.namespace || e.namespace.indexOf('owl') === -1)) { + return _default.apply(this, arguments); + } + return e.namespace && e.namespace.indexOf('owl') > -1; + }; + $.event.special[object.name].owl = true; + } + } else if (object.type === Owl.Type.State) { + if (!this._states.tags[object.name]) { + this._states.tags[object.name] = object.tags; + } else { + this._states.tags[object.name] = this._states.tags[object.name].concat(object.tags); + } + + this._states.tags[object.name] = $.grep(this._states.tags[object.name], $.proxy(function(tag, i) { + return $.inArray(tag, this._states.tags[object.name]) === i; + }, this)); + } + }; + + /** + * Suppresses events. + * @protected + * @param {Array.} events - The events to suppress. + */ + Owl.prototype.suppress = function(events) { + $.each(events, $.proxy(function(index, event) { + this._supress[event] = true; + }, this)); + }; + + /** + * Releases suppressed events. + * @protected + * @param {Array.} events - The events to release. + */ + Owl.prototype.release = function(events) { + $.each(events, $.proxy(function(index, event) { + delete this._supress[event]; + }, this)); + }; + + /** + * Gets unified pointer coordinates from event. + * @todo #261 + * @protected + * @param {Event} - The `mousedown` or `touchstart` event. + * @returns {Object} - Contains `x` and `y` coordinates of current pointer position. + */ + Owl.prototype.pointer = function(event) { + var result = { x: null, y: null }; + + event = event.originalEvent || event || window.event; + + event = event.touches && event.touches.length ? + event.touches[0] : event.changedTouches && event.changedTouches.length ? + event.changedTouches[0] : event; + + if (event.pageX) { + result.x = event.pageX; + result.y = event.pageY; + } else { + result.x = event.clientX; + result.y = event.clientY; + } + + return result; + }; + + /** + * Determines if the input is a Number or something that can be coerced to a Number + * @protected + * @param {Number|String|Object|Array|Boolean|RegExp|Function|Symbol} - The input to be tested + * @returns {Boolean} - An indication if the input is a Number or can be coerced to a Number + */ + Owl.prototype.isNumeric = function(number) { + return !isNaN(parseFloat(number)); + }; + + /** + * Gets the difference of two vectors. + * @todo #261 + * @protected + * @param {Object} - The first vector. + * @param {Object} - The second vector. + * @returns {Object} - The difference. + */ + Owl.prototype.difference = function(first, second) { + return { + x: first.x - second.x, + y: first.y - second.y + }; + }; + + /** + * The jQuery Plugin for the Owl Carousel + * @todo Navigation plugin `next` and `prev` + * @public + */ + $.fn.owlCarousel = function(option) { + var args = Array.prototype.slice.call(arguments, 1); + + return this.each(function() { + var $this = $(this), + data = $this.data('owl.carousel'); + + if (!data) { + data = new Owl(this, typeof option == 'object' && option); + $this.data('owl.carousel', data); + + $.each([ + 'next', 'prev', 'to', 'destroy', 'refresh', 'replace', 'add', 'remove' + ], function(i, event) { + data.register({ type: Owl.Type.Event, name: event }); + data.$element.on(event + '.owl.carousel.core', $.proxy(function(e) { + if (e.namespace && e.relatedTarget !== this) { + this.suppress([ event ]); + data[event].apply(this, [].slice.call(arguments, 1)); + this.release([ event ]); + } + }, data)); + }); + } + + if (typeof option == 'string' && option.charAt(0) !== '_') { + data[option].apply(data, args); + } + }); + }; + + /** + * The constructor for the jQuery Plugin + * @public + */ + $.fn.owlCarousel.Constructor = Owl; + +})(window.Zepto || window.jQuery, window, document); + +/** + * AutoRefresh Plugin + * @version 2.1.0 + * @author Artus Kolanowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the auto refresh plugin. + * @class The Auto Refresh Plugin + * @param {Owl} carousel - The Owl Carousel + */ + var AutoRefresh = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * Refresh interval. + * @protected + * @type {number} + */ + this._interval = null; + + /** + * Whether the element is currently visible or not. + * @protected + * @type {Boolean} + */ + this._visible = null; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'initialized.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.autoRefresh) { + this.watch(); + } + }, this) + }; + + // set default options + this._core.options = $.extend({}, AutoRefresh.Defaults, this._core.options); + + // register event handlers + this._core.$element.on(this._handlers); + }; + + /** + * Default options. + * @public + */ + AutoRefresh.Defaults = { + autoRefresh: true, + autoRefreshInterval: 500 + }; + + /** + * Watches the element. + */ + AutoRefresh.prototype.watch = function() { + if (this._interval) { + return; + } + + this._visible = this._core.$element.is(':visible'); + this._interval = window.setInterval($.proxy(this.refresh, this), this._core.settings.autoRefreshInterval); + }; + + /** + * Refreshes the element. + */ + AutoRefresh.prototype.refresh = function() { + if (this._core.$element.is(':visible') === this._visible) { + return; + } + + this._visible = !this._visible; + + this._core.$element.toggleClass('owl-hidden', !this._visible); + + this._visible && (this._core.invalidate('width') && this._core.refresh()); + }; + + /** + * Destroys the plugin. + */ + AutoRefresh.prototype.destroy = function() { + var handler, property; + + window.clearInterval(this._interval); + + for (handler in this._handlers) { + this._core.$element.off(handler, this._handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.AutoRefresh = AutoRefresh; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Lazy Plugin + * @version 2.1.0 + * @author Bartosz Wojciechowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the lazy plugin. + * @class The Lazy Plugin + * @param {Owl} carousel - The Owl Carousel + */ + var Lazy = function(carousel) { + + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * Already loaded items. + * @protected + * @type {Array.} + */ + this._loaded = []; + + /** + * Event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'initialized.owl.carousel change.owl.carousel resized.owl.carousel': $.proxy(function(e) { + if (!e.namespace) { + return; + } + + if (!this._core.settings || !this._core.settings.lazyLoad) { + return; + } + + if ((e.property && e.property.name == 'position') || e.type == 'initialized') { + var settings = this._core.settings, + n = (settings.center && Math.ceil(settings.items / 2) || settings.items), + i = ((settings.center && n * -1) || 0), + position = (e.property && e.property.value !== undefined ? e.property.value : this._core.current()) + i, + clones = this._core.clones().length, + load = $.proxy(function(i, v) { this.load(v) }, this); + + while (i++ < n) { + this.load(clones / 2 + this._core.relative(position)); + clones && $.each(this._core.clones(this._core.relative(position)), load); + position++; + } + } + }, this) + }; + + // set the default options + this._core.options = $.extend({}, Lazy.Defaults, this._core.options); + + // register event handler + this._core.$element.on(this._handlers); + }; + + /** + * Default options. + * @public + */ + Lazy.Defaults = { + lazyLoad: false + }; + + /** + * Loads all resources of an item at the specified position. + * @param {Number} position - The absolute position of the item. + * @protected + */ + Lazy.prototype.load = function(position) { + var $item = this._core.$stage.children().eq(position), + $elements = $item && $item.find('.owl-lazy'); + + if (!$elements || $.inArray($item.get(0), this._loaded) > -1) { + return; + } + + $elements.each($.proxy(function(index, element) { + var $element = $(element), image, + url = (window.devicePixelRatio > 1 && $element.attr('data-src-retina')) || $element.attr('data-src'); + + this._core.trigger('load', { element: $element, url: url }, 'lazy'); + + if ($element.is('img')) { + $element.one('load.owl.lazy', $.proxy(function() { + $element.css('opacity', 1); + this._core.trigger('loaded', { element: $element, url: url }, 'lazy'); + }, this)).attr('src', url); + } else { + image = new Image(); + image.onload = $.proxy(function() { + $element.css({ + 'background-image': 'url("' + url + '")', + 'opacity': '1' + }); + this._core.trigger('loaded', { element: $element, url: url }, 'lazy'); + }, this); + image.src = url; + } + }, this)); + + this._loaded.push($item.get(0)); + }; + + /** + * Destroys the plugin. + * @public + */ + Lazy.prototype.destroy = function() { + var handler, property; + + for (handler in this.handlers) { + this._core.$element.off(handler, this.handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.Lazy = Lazy; + +})(window.Zepto || window.jQuery, window, document); + +/** + * AutoHeight Plugin + * @version 2.1.0 + * @author Bartosz Wojciechowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the auto height plugin. + * @class The Auto Height Plugin + * @param {Owl} carousel - The Owl Carousel + */ + var AutoHeight = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'initialized.owl.carousel refreshed.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.autoHeight) { + this.update(); + } + }, this), + 'changed.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.autoHeight && e.property.name == 'position'){ + this.update(); + } + }, this), + 'loaded.owl.lazy': $.proxy(function(e) { + if (e.namespace && this._core.settings.autoHeight + && e.element.closest('.' + this._core.settings.itemClass).index() === this._core.current()) { + this.update(); + } + }, this) + }; + + // set default options + this._core.options = $.extend({}, AutoHeight.Defaults, this._core.options); + + // register event handlers + this._core.$element.on(this._handlers); + }; + + /** + * Default options. + * @public + */ + AutoHeight.Defaults = { + autoHeight: false, + autoHeightClass: 'owl-height' + }; + + /** + * Updates the view. + */ + AutoHeight.prototype.update = function() { + var start = this._core._current, + end = start + this._core.settings.items, + visible = this._core.$stage.children().toArray().slice(start, end), + heights = [], + maxheight = 0; + + $.each(visible, function(index, item) { + heights.push($(item).height()); + }); + + maxheight = Math.max.apply(null, heights); + + this._core.$stage.parent() + .height(maxheight) + .addClass(this._core.settings.autoHeightClass); + }; + + AutoHeight.prototype.destroy = function() { + var handler, property; + + for (handler in this._handlers) { + this._core.$element.off(handler, this._handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.AutoHeight = AutoHeight; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Video Plugin + * @version 2.1.0 + * @author Bartosz Wojciechowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the video plugin. + * @class The Video Plugin + * @param {Owl} carousel - The Owl Carousel + */ + var Video = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * Cache all video URLs. + * @protected + * @type {Object} + */ + this._videos = {}; + + /** + * Current playing item. + * @protected + * @type {jQuery} + */ + this._playing = null; + + /** + * All event handlers. + * @todo The cloned content removale is too late + * @protected + * @type {Object} + */ + this._handlers = { + 'initialized.owl.carousel': $.proxy(function(e) { + if (e.namespace) { + this._core.register({ type: 'state', name: 'playing', tags: [ 'interacting' ] }); + } + }, this), + 'resize.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.video && this.isInFullScreen()) { + e.preventDefault(); + } + }, this), + 'refreshed.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.is('resizing')) { + this._core.$stage.find('.cloned .owl-video-frame').remove(); + } + }, this), + 'changed.owl.carousel': $.proxy(function(e) { + if (e.namespace && e.property.name === 'position' && this._playing) { + this.stop(); + } + }, this), + 'prepared.owl.carousel': $.proxy(function(e) { + if (!e.namespace) { + return; + } + + var $element = $(e.content).find('.owl-video'); + + if ($element.length) { + $element.css('display', 'none'); + this.fetch($element, $(e.content)); + } + }, this) + }; + + // set default options + this._core.options = $.extend({}, Video.Defaults, this._core.options); + + // register event handlers + this._core.$element.on(this._handlers); + + this._core.$element.on('click.owl.video', '.owl-video-play-icon', $.proxy(function(e) { + this.play(e); + }, this)); + }; + + /** + * Default options. + * @public + */ + Video.Defaults = { + video: false, + videoHeight: false, + videoWidth: false + }; + + /** + * Gets the video ID and the type (YouTube/Vimeo/vzaar only). + * @protected + * @param {jQuery} target - The target containing the video data. + * @param {jQuery} item - The item containing the video. + */ + Video.prototype.fetch = function(target, item) { + var type = (function() { + if (target.attr('data-vimeo-id')) { + return 'vimeo'; + } else if (target.attr('data-vzaar-id')) { + return 'vzaar' + } else { + return 'youtube'; + } + })(), + id = target.attr('data-vimeo-id') || target.attr('data-youtube-id') || target.attr('data-vzaar-id'), + width = target.attr('data-width') || this._core.settings.videoWidth, + height = target.attr('data-height') || this._core.settings.videoHeight, + url = target.attr('href'); + + if (url) { + + /* + Parses the id's out of the following urls (and probably more): + https://www.youtube.com/watch?v=:id + https://youtu.be/:id + https://vimeo.com/:id + https://vimeo.com/channels/:channel/:id + https://vimeo.com/groups/:group/videos/:id + https://app.vzaar.com/videos/:id + + Visual example: https://regexper.com/#(http%3A%7Chttps%3A%7C)%5C%2F%5C%2F(player.%7Cwww.%7Capp.)%3F(vimeo%5C.com%7Cyoutu(be%5C.com%7C%5C.be%7Cbe%5C.googleapis%5C.com)%7Cvzaar%5C.com)%5C%2F(video%5C%2F%7Cvideos%5C%2F%7Cembed%5C%2F%7Cchannels%5C%2F.%2B%5C%2F%7Cgroups%5C%2F.%2B%5C%2F%7Cwatch%5C%3Fv%3D%7Cv%5C%2F)%3F(%5BA-Za-z0-9._%25-%5D*)(%5C%26%5CS%2B)%3F + */ + + id = url.match(/(http:|https:|)\/\/(player.|www.|app.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com)|vzaar\.com)\/(video\/|videos\/|embed\/|channels\/.+\/|groups\/.+\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/); + + if (id[3].indexOf('youtu') > -1) { + type = 'youtube'; + } else if (id[3].indexOf('vimeo') > -1) { + type = 'vimeo'; + } else if (id[3].indexOf('vzaar') > -1) { + type = 'vzaar'; + } else { + throw new Error('Video URL not supported.'); + } + id = id[6]; + } else { + throw new Error('Missing video URL.'); + } + + this._videos[url] = { + type: type, + id: id, + width: width, + height: height + }; + + item.attr('data-video', url); + + this.thumbnail(target, this._videos[url]); + }; + + /** + * Creates video thumbnail. + * @protected + * @param {jQuery} target - The target containing the video data. + * @param {Object} info - The video info object. + * @see `fetch` + */ + Video.prototype.thumbnail = function(target, video) { + var tnLink, + icon, + path, + dimensions = video.width && video.height ? 'style="width:' + video.width + 'px;height:' + video.height + 'px;"' : '', + customTn = target.find('img'), + srcType = 'src', + lazyClass = '', + settings = this._core.settings, + create = function(path) { + icon = '
'; + + if (settings.lazyLoad) { + tnLink = '
'; + } else { + tnLink = '
'; + } + target.after(tnLink); + target.after(icon); + }; + + // wrap video content into owl-video-wrapper div + target.wrap('
'); + + if (this._core.settings.lazyLoad) { + srcType = 'data-src'; + lazyClass = 'owl-lazy'; + } + + // custom thumbnail + if (customTn.length) { + create(customTn.attr(srcType)); + customTn.remove(); + return false; + } + + if (video.type === 'youtube') { + path = "//img.youtube.com/vi/" + video.id + "/hqdefault.jpg"; + create(path); + } else if (video.type === 'vimeo') { + $.ajax({ + type: 'GET', + url: '//vimeo.com/api/v2/video/' + video.id + '.json', + jsonp: 'callback', + dataType: 'jsonp', + success: function(data) { + path = data[0].thumbnail_large; + create(path); + } + }); + } else if (video.type === 'vzaar') { + $.ajax({ + type: 'GET', + url: '//vzaar.com/api/videos/' + video.id + '.json', + jsonp: 'callback', + dataType: 'jsonp', + success: function(data) { + path = data.framegrab_url; + create(path); + } + }); + } + }; + + /** + * Stops the current video. + * @public + */ + Video.prototype.stop = function() { + this._core.trigger('stop', null, 'video'); + this._playing.find('.owl-video-frame').remove(); + this._playing.removeClass('owl-video-playing'); + this._playing = null; + this._core.leave('playing'); + this._core.trigger('stopped', null, 'video'); + }; + + /** + * Starts the current video. + * @public + * @param {Event} event - The event arguments. + */ + Video.prototype.play = function(event) { + var target = $(event.target), + item = target.closest('.' + this._core.settings.itemClass), + video = this._videos[item.attr('data-video')], + width = video.width || '100%', + height = video.height || this._core.$stage.height(), + html; + + if (this._playing) { + return; + } + + this._core.enter('playing'); + this._core.trigger('play', null, 'video'); + + item = this._core.items(this._core.relative(item.index())); + + this._core.reset(item.index()); + + if (video.type === 'youtube') { + html = ''; + } else if (video.type === 'vimeo') { + html = ''; + } else if (video.type === 'vzaar') { + html = ''; + } + + $('
' + html + '
').insertAfter(item.find('.owl-video')); + + this._playing = item.addClass('owl-video-playing'); + }; + + /** + * Checks whether an video is currently in full screen mode or not. + * @todo Bad style because looks like a readonly method but changes members. + * @protected + * @returns {Boolean} + */ + Video.prototype.isInFullScreen = function() { + var element = document.fullscreenElement || document.mozFullScreenElement || + document.webkitFullscreenElement; + + return element && $(element).parent().hasClass('owl-video-frame'); + }; + + /** + * Destroys the plugin. + */ + Video.prototype.destroy = function() { + var handler, property; + + this._core.$element.off('click.owl.video'); + + for (handler in this._handlers) { + this._core.$element.off(handler, this._handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.Video = Video; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Animate Plugin + * @version 2.1.0 + * @author Bartosz Wojciechowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the animate plugin. + * @class The Navigation Plugin + * @param {Owl} scope - The Owl Carousel + */ + var Animate = function(scope) { + this.core = scope; + this.core.options = $.extend({}, Animate.Defaults, this.core.options); + this.swapping = true; + this.previous = undefined; + this.next = undefined; + + this.handlers = { + 'change.owl.carousel': $.proxy(function(e) { + if (e.namespace && e.property.name == 'position') { + this.previous = this.core.current(); + this.next = e.property.value; + } + }, this), + 'drag.owl.carousel dragged.owl.carousel translated.owl.carousel': $.proxy(function(e) { + if (e.namespace) { + this.swapping = e.type == 'translated'; + } + }, this), + 'translate.owl.carousel': $.proxy(function(e) { + if (e.namespace && this.swapping && (this.core.options.animateOut || this.core.options.animateIn)) { + this.swap(); + } + }, this) + }; + + this.core.$element.on(this.handlers); + }; + + /** + * Default options. + * @public + */ + Animate.Defaults = { + animateOut: false, + animateIn: false + }; + + /** + * Toggles the animation classes whenever an translations starts. + * @protected + * @returns {Boolean|undefined} + */ + Animate.prototype.swap = function() { + + if (this.core.settings.items !== 1) { + return; + } + + if (!$.support.animation || !$.support.transition) { + return; + } + + this.core.speed(0); + + var left, + clear = $.proxy(this.clear, this), + previous = this.core.$stage.children().eq(this.previous), + next = this.core.$stage.children().eq(this.next), + incoming = this.core.settings.animateIn, + outgoing = this.core.settings.animateOut; + + if (this.core.current() === this.previous) { + return; + } + + if (outgoing) { + left = this.core.coordinates(this.previous) - this.core.coordinates(this.next); + previous.one($.support.animation.end, clear) + .css( { 'left': left + 'px' } ) + .addClass('animated owl-animated-out') + .addClass(outgoing); + } + + if (incoming) { + next.one($.support.animation.end, clear) + .addClass('animated owl-animated-in') + .addClass(incoming); + } + }; + + Animate.prototype.clear = function(e) { + $(e.target).css( { 'left': '' } ) + .removeClass('animated owl-animated-out owl-animated-in') + .removeClass(this.core.settings.animateIn) + .removeClass(this.core.settings.animateOut); + this.core.onTransitionEnd(); + }; + + /** + * Destroys the plugin. + * @public + */ + Animate.prototype.destroy = function() { + var handler, property; + + for (handler in this.handlers) { + this.core.$element.off(handler, this.handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.Animate = Animate; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Autoplay Plugin + * @version 2.1.0 + * @author Bartosz Wojciechowski + * @author Artus Kolanowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the autoplay plugin. + * @class The Autoplay Plugin + * @param {Owl} scope - The Owl Carousel + */ + var Autoplay = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * The autoplay timeout. + * @type {Timeout} + */ + this._timeout = null; + + /** + * Indicates whenever the autoplay is paused. + * @type {Boolean} + */ + this._paused = false; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'changed.owl.carousel': $.proxy(function(e) { + if (e.namespace && e.property.name === 'settings') { + if (this._core.settings.autoplay) { + this.play(); + } else { + this.stop(); + } + } else if (e.namespace && e.property.name === 'position') { + //console.log('play?', e); + if (this._core.settings.autoplay) { + this._setAutoPlayInterval(); + } + } + }, this), + 'initialized.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.autoplay) { + this.play(); + } + }, this), + 'play.owl.autoplay': $.proxy(function(e, t, s) { + if (e.namespace) { + this.play(t, s); + } + }, this), + 'stop.owl.autoplay': $.proxy(function(e) { + if (e.namespace) { + this.stop(); + } + }, this), + 'mouseover.owl.autoplay': $.proxy(function() { + if (this._core.settings.autoplayHoverPause && this._core.is('rotating')) { + this.pause(); + } + }, this), + 'mouseleave.owl.autoplay': $.proxy(function() { + if (this._core.settings.autoplayHoverPause && this._core.is('rotating')) { + this.play(); + } + }, this), + 'touchstart.owl.core': $.proxy(function() { + if (this._core.settings.autoplayHoverPause && this._core.is('rotating')) { + this.pause(); + } + }, this), + 'touchend.owl.core': $.proxy(function() { + if (this._core.settings.autoplayHoverPause) { + this.play(); + } + }, this) + }; + + // register event handlers + this._core.$element.on(this._handlers); + + // set default options + this._core.options = $.extend({}, Autoplay.Defaults, this._core.options); + }; + + /** + * Default options. + * @public + */ + Autoplay.Defaults = { + autoplay: false, + autoplayTimeout: 5000, + autoplayHoverPause: false, + autoplaySpeed: false + }; + + /** + * Starts the autoplay. + * @public + * @param {Number} [timeout] - The interval before the next animation starts. + * @param {Number} [speed] - The animation speed for the animations. + */ + Autoplay.prototype.play = function(timeout, speed) { + this._paused = false; + + if (this._core.is('rotating')) { + return; + } + + this._core.enter('rotating'); + + this._setAutoPlayInterval(); + }; + + /** + * Gets a new timeout + * @private + * @param {Number} [timeout] - The interval before the next animation starts. + * @param {Number} [speed] - The animation speed for the animations. + * @return {Timeout} + */ + Autoplay.prototype._getNextTimeout = function(timeout, speed) { + if ( this._timeout ) { + window.clearTimeout(this._timeout); + } + return window.setTimeout($.proxy(function() { + if (this._paused || this._core.is('busy') || this._core.is('interacting') || document.hidden) { + return; + } + this._core.next(speed || this._core.settings.autoplaySpeed); + }, this), timeout || this._core.settings.autoplayTimeout); + }; + + /** + * Sets autoplay in motion. + * @private + */ + Autoplay.prototype._setAutoPlayInterval = function() { + this._timeout = this._getNextTimeout(); + }; + + /** + * Stops the autoplay. + * @public + */ + Autoplay.prototype.stop = function() { + if (!this._core.is('rotating')) { + return; + } + + window.clearTimeout(this._timeout); + this._core.leave('rotating'); + }; + + /** + * Stops the autoplay. + * @public + */ + Autoplay.prototype.pause = function() { + if (!this._core.is('rotating')) { + return; + } + + this._paused = true; + }; + + /** + * Destroys the plugin. + */ + Autoplay.prototype.destroy = function() { + var handler, property; + + this.stop(); + + for (handler in this._handlers) { + this._core.$element.off(handler, this._handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.autoplay = Autoplay; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Navigation Plugin + * @version 2.1.0 + * @author Artus Kolanowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + 'use strict'; + + /** + * Creates the navigation plugin. + * @class The Navigation Plugin + * @param {Owl} carousel - The Owl Carousel. + */ + var Navigation = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * Indicates whether the plugin is initialized or not. + * @protected + * @type {Boolean} + */ + this._initialized = false; + + /** + * The current paging indexes. + * @protected + * @type {Array} + */ + this._pages = []; + + /** + * All DOM elements of the user interface. + * @protected + * @type {Object} + */ + this._controls = {}; + + /** + * Markup for an indicator. + * @protected + * @type {Array.} + */ + this._templates = []; + + /** + * The carousel element. + * @type {jQuery} + */ + this.$element = this._core.$element; + + /** + * Overridden methods of the carousel. + * @protected + * @type {Object} + */ + this._overrides = { + next: this._core.next, + prev: this._core.prev, + to: this._core.to + }; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'prepared.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.dotsData) { + this._templates.push('
' + + $(e.content).find('[data-dot]').addBack('[data-dot]').attr('data-dot') + '
'); + } + }, this), + 'added.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.dotsData) { + this._templates.splice(e.position, 0, this._templates.pop()); + } + }, this), + 'remove.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.dotsData) { + this._templates.splice(e.position, 1); + } + }, this), + 'changed.owl.carousel': $.proxy(function(e) { + if (e.namespace && e.property.name == 'position') { + this.draw(); + } + }, this), + 'initialized.owl.carousel': $.proxy(function(e) { + if (e.namespace && !this._initialized) { + this._core.trigger('initialize', null, 'navigation'); + this.initialize(); + this.update(); + this.draw(); + this._initialized = true; + this._core.trigger('initialized', null, 'navigation'); + } + }, this), + 'refreshed.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._initialized) { + this._core.trigger('refresh', null, 'navigation'); + this.update(); + this.draw(); + this._core.trigger('refreshed', null, 'navigation'); + } + }, this) + }; + + // set default options + this._core.options = $.extend({}, Navigation.Defaults, this._core.options); + + // register event handlers + this.$element.on(this._handlers); + }; + + /** + * Default options. + * @public + * @todo Rename `slideBy` to `navBy` + */ + Navigation.Defaults = { + nav: false, + navText: [ 'prev', 'next' ], + navSpeed: false, + navElement: 'div', + navContainer: false, + navContainerClass: 'owl-nav', + navClass: [ 'owl-prev', 'owl-next' ], + slideBy: 1, + dotClass: 'owl-dot', + dotsClass: 'owl-dots', + dots: true, + dotsEach: false, + dotsData: false, + dotsSpeed: false, + dotsContainer: false + }; + + /** + * Initializes the layout of the plugin and extends the carousel. + * @protected + */ + Navigation.prototype.initialize = function() { + var override, + settings = this._core.settings; + + // create DOM structure for relative navigation + this._controls.$relative = (settings.navContainer ? $(settings.navContainer) + : $('
').addClass(settings.navContainerClass).appendTo(this.$element)).addClass('disabled'); + + this._controls.$previous = $('<' + settings.navElement + '>') + .addClass(settings.navClass[0]) + .html(settings.navText[0]) + .prependTo(this._controls.$relative) + .on('click', $.proxy(function(e) { + this.prev(settings.navSpeed); + }, this)); + this._controls.$next = $('<' + settings.navElement + '>') + .addClass(settings.navClass[1]) + .html(settings.navText[1]) + .appendTo(this._controls.$relative) + .on('click', $.proxy(function(e) { + this.next(settings.navSpeed); + }, this)); + + // create DOM structure for absolute navigation + if (!settings.dotsData) { + this._templates = [ $('
') + .addClass(settings.dotClass) + .append($('')) + .prop('outerHTML') ]; + } + + this._controls.$absolute = (settings.dotsContainer ? $(settings.dotsContainer) + : $('
').addClass(settings.dotsClass).appendTo(this.$element)).addClass('disabled'); + + this._controls.$absolute.on('click', 'div', $.proxy(function(e) { + var index = $(e.target).parent().is(this._controls.$absolute) + ? $(e.target).index() : $(e.target).parent().index(); + + e.preventDefault(); + + this.to(index, settings.dotsSpeed); + }, this)); + + // override public methods of the carousel + for (override in this._overrides) { + this._core[override] = $.proxy(this[override], this); + } + }; + + /** + * Destroys the plugin. + * @protected + */ + Navigation.prototype.destroy = function() { + var handler, control, property, override; + + for (handler in this._handlers) { + this.$element.off(handler, this._handlers[handler]); + } + for (control in this._controls) { + this._controls[control].remove(); + } + for (override in this.overides) { + this._core[override] = this._overrides[override]; + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + /** + * Updates the internal state. + * @protected + */ + Navigation.prototype.update = function() { + var i, j, k, + lower = this._core.clones().length / 2, + upper = lower + this._core.items().length, + maximum = this._core.maximum(true), + settings = this._core.settings, + size = settings.center || settings.autoWidth || settings.dotsData + ? 1 : settings.dotsEach || settings.items; + + if (settings.slideBy !== 'page') { + settings.slideBy = Math.min(settings.slideBy, settings.items); + } + + if (settings.dots || settings.slideBy == 'page') { + this._pages = []; + + for (i = lower, j = 0, k = 0; i < upper; i++) { + if (j >= size || j === 0) { + this._pages.push({ + start: Math.min(maximum, i - lower), + end: i - lower + size - 1 + }); + if (Math.min(maximum, i - lower) === maximum) { + break; + } + j = 0, ++k; + } + j += this._core.mergers(this._core.relative(i)); + } + } + }; + + /** + * Draws the user interface. + * @todo The option `dotsData` wont work. + * @protected + */ + Navigation.prototype.draw = function() { + var difference, + settings = this._core.settings, + disabled = this._core.items().length <= settings.items, + index = this._core.relative(this._core.current()), + loop = settings.loop || settings.rewind; + + this._controls.$relative.toggleClass('disabled', !settings.nav || disabled); + + if (settings.nav) { + this._controls.$previous.toggleClass('disabled', !loop && index <= this._core.minimum(true)); + this._controls.$next.toggleClass('disabled', !loop && index >= this._core.maximum(true)); + } + + this._controls.$absolute.toggleClass('disabled', !settings.dots || disabled); + + if (settings.dots) { + difference = this._pages.length - this._controls.$absolute.children().length; + + if (settings.dotsData && difference !== 0) { + this._controls.$absolute.html(this._templates.join('')); + } else if (difference > 0) { + this._controls.$absolute.append(new Array(difference + 1).join(this._templates[0])); + } else if (difference < 0) { + this._controls.$absolute.children().slice(difference).remove(); + } + + this._controls.$absolute.find('.active').removeClass('active'); + this._controls.$absolute.children().eq($.inArray(this.current(), this._pages)).addClass('active'); + } + }; + + /** + * Extends event data. + * @protected + * @param {Event} event - The event object which gets thrown. + */ + Navigation.prototype.onTrigger = function(event) { + var settings = this._core.settings; + + event.page = { + index: $.inArray(this.current(), this._pages), + count: this._pages.length, + size: settings && (settings.center || settings.autoWidth || settings.dotsData + ? 1 : settings.dotsEach || settings.items) + }; + }; + + /** + * Gets the current page position of the carousel. + * @protected + * @returns {Number} + */ + Navigation.prototype.current = function() { + var current = this._core.relative(this._core.current()); + return $.grep(this._pages, $.proxy(function(page, index) { + return page.start <= current && page.end >= current; + }, this)).pop(); + }; + + /** + * Gets the current succesor/predecessor position. + * @protected + * @returns {Number} + */ + Navigation.prototype.getPosition = function(successor) { + var position, length, + settings = this._core.settings; + + if (settings.slideBy == 'page') { + position = $.inArray(this.current(), this._pages); + length = this._pages.length; + successor ? ++position : --position; + position = this._pages[((position % length) + length) % length].start; + } else { + position = this._core.relative(this._core.current()); + length = this._core.items().length; + successor ? position += settings.slideBy : position -= settings.slideBy; + } + + return position; + }; + + /** + * Slides to the next item or page. + * @public + * @param {Number} [speed=false] - The time in milliseconds for the transition. + */ + Navigation.prototype.next = function(speed) { + $.proxy(this._overrides.to, this._core)(this.getPosition(true), speed); + }; + + /** + * Slides to the previous item or page. + * @public + * @param {Number} [speed=false] - The time in milliseconds for the transition. + */ + Navigation.prototype.prev = function(speed) { + $.proxy(this._overrides.to, this._core)(this.getPosition(false), speed); + }; + + /** + * Slides to the specified item or page. + * @public + * @param {Number} position - The position of the item or page. + * @param {Number} [speed] - The time in milliseconds for the transition. + * @param {Boolean} [standard=false] - Whether to use the standard behaviour or not. + */ + Navigation.prototype.to = function(position, speed, standard) { + var length; + + if (!standard && this._pages.length) { + length = this._pages.length; + $.proxy(this._overrides.to, this._core)(this._pages[((position % length) + length) % length].start, speed); + } else { + $.proxy(this._overrides.to, this._core)(position, speed); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.Navigation = Navigation; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Hash Plugin + * @version 2.1.0 + * @author Artus Kolanowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + 'use strict'; + + /** + * Creates the hash plugin. + * @class The Hash Plugin + * @param {Owl} carousel - The Owl Carousel + */ + var Hash = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * Hash index for the items. + * @protected + * @type {Object} + */ + this._hashes = {}; + + /** + * The carousel element. + * @type {jQuery} + */ + this.$element = this._core.$element; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'initialized.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.startPosition === 'URLHash') { + $(window).trigger('hashchange.owl.navigation'); + } + }, this), + 'prepared.owl.carousel': $.proxy(function(e) { + if (e.namespace) { + var hash = $(e.content).find('[data-hash]').addBack('[data-hash]').attr('data-hash'); + + if (!hash) { + return; + } + + this._hashes[hash] = e.content; + } + }, this), + 'changed.owl.carousel': $.proxy(function(e) { + if (e.namespace && e.property.name === 'position') { + var current = this._core.items(this._core.relative(this._core.current())), + hash = $.map(this._hashes, function(item, hash) { + return item === current ? hash : null; + }).join(); + + if (!hash || window.location.hash.slice(1) === hash) { + return; + } + + window.location.hash = hash; + } + }, this) + }; + + // set default options + this._core.options = $.extend({}, Hash.Defaults, this._core.options); + + // register the event handlers + this.$element.on(this._handlers); + + // register event listener for hash navigation + $(window).on('hashchange.owl.navigation', $.proxy(function(e) { + var hash = window.location.hash.substring(1), + items = this._core.$stage.children(), + position = this._hashes[hash] && items.index(this._hashes[hash]); + + if (position === undefined || position === this._core.current()) { + return; + } + + this._core.to(this._core.relative(position), false, true); + }, this)); + }; + + /** + * Default options. + * @public + */ + Hash.Defaults = { + URLhashListener: false + }; + + /** + * Destroys the plugin. + * @public + */ + Hash.prototype.destroy = function() { + var handler, property; + + $(window).off('hashchange.owl.navigation'); + + for (handler in this._handlers) { + this._core.$element.off(handler, this._handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.Hash = Hash; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Support Plugin + * + * @version 2.1.0 + * @author Vivid Planet Software GmbH + * @author Artus Kolanowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + var style = $('').get(0).style, + prefixes = 'Webkit Moz O ms'.split(' '), + events = { + transition: { + end: { + WebkitTransition: 'webkitTransitionEnd', + MozTransition: 'transitionend', + OTransition: 'oTransitionEnd', + transition: 'transitionend' + } + }, + animation: { + end: { + WebkitAnimation: 'webkitAnimationEnd', + MozAnimation: 'animationend', + OAnimation: 'oAnimationEnd', + animation: 'animationend' + } + } + }, + tests = { + csstransforms: function() { + return !!test('transform'); + }, + csstransforms3d: function() { + return !!test('perspective'); + }, + csstransitions: function() { + return !!test('transition'); + }, + cssanimations: function() { + return !!test('animation'); + } + }; + + function test(property, prefixed) { + var result = false, + upper = property.charAt(0).toUpperCase() + property.slice(1); + + $.each((property + ' ' + prefixes.join(upper + ' ') + upper).split(' '), function(i, property) { + if (style[property] !== undefined) { + result = prefixed ? property : true; + return false; + } + }); + + return result; + } + + function prefixed(property) { + return test(property, true); + } + + if (tests.csstransitions()) { + /* jshint -W053 */ + $.support.transition = new String(prefixed('transition')) + $.support.transition.end = events.transition.end[ $.support.transition ]; + } + + if (tests.cssanimations()) { + /* jshint -W053 */ + $.support.animation = new String(prefixed('animation')) + $.support.animation.end = events.animation.end[ $.support.animation ]; + } + + if (tests.csstransforms()) { + /* jshint -W053 */ + $.support.transform = new String(prefixed('transform')); + $.support.transform3d = tests.csstransforms3d(); + } + +})(window.Zepto || window.jQuery, window, document); diff --git a/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/owl.carousel.min.js b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/owl.carousel.min.js new file mode 100644 index 0000000..9b9566f --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/lib/owlcarousel/owl.carousel.min.js @@ -0,0 +1,7 @@ +/** + * Owl Carousel v2.2.1 + * Copyright 2013-2017 David Deutsch + * Licensed under () + */ +!function(a,b,c,d){function e(b,c){this.settings=null,this.options=a.extend({},e.Defaults,c),this.$element=a(b),this._handlers={},this._plugins={},this._supress={},this._current=null,this._speed=null,this._coordinates=[],this._breakpoint=null,this._width=null,this._items=[],this._clones=[],this._mergers=[],this._widths=[],this._invalidated={},this._pipe=[],this._drag={time:null,target:null,pointer:null,stage:{start:null,current:null},direction:null},this._states={current:{},tags:{initializing:["busy"],animating:["busy"],dragging:["interacting"]}},a.each(["onResize","onThrottledResize"],a.proxy(function(b,c){this._handlers[c]=a.proxy(this[c],this)},this)),a.each(e.Plugins,a.proxy(function(a,b){this._plugins[a.charAt(0).toLowerCase()+a.slice(1)]=new b(this)},this)),a.each(e.Workers,a.proxy(function(b,c){this._pipe.push({filter:c.filter,run:a.proxy(c.run,this)})},this)),this.setup(),this.initialize()}e.Defaults={items:3,loop:!1,center:!1,rewind:!1,mouseDrag:!0,touchDrag:!0,pullDrag:!0,freeDrag:!1,margin:0,stagePadding:0,merge:!1,mergeFit:!0,autoWidth:!1,startPosition:0,rtl:!1,smartSpeed:250,fluidSpeed:!1,dragEndSpeed:!1,responsive:{},responsiveRefreshRate:200,responsiveBaseElement:b,fallbackEasing:"swing",info:!1,nestedItemSelector:!1,itemElement:"div",stageElement:"div",refreshClass:"owl-refresh",loadedClass:"owl-loaded",loadingClass:"owl-loading",rtlClass:"owl-rtl",responsiveClass:"owl-responsive",dragClass:"owl-drag",itemClass:"owl-item",stageClass:"owl-stage",stageOuterClass:"owl-stage-outer",grabClass:"owl-grab"},e.Width={Default:"default",Inner:"inner",Outer:"outer"},e.Type={Event:"event",State:"state"},e.Plugins={},e.Workers=[{filter:["width","settings"],run:function(){this._width=this.$element.width()}},{filter:["width","items","settings"],run:function(a){a.current=this._items&&this._items[this.relative(this._current)]}},{filter:["items","settings"],run:function(){this.$stage.children(".cloned").remove()}},{filter:["width","items","settings"],run:function(a){var b=this.settings.margin||"",c=!this.settings.autoWidth,d=this.settings.rtl,e={width:"auto","margin-left":d?b:"","margin-right":d?"":b};!c&&this.$stage.children().css(e),a.css=e}},{filter:["width","items","settings"],run:function(a){var b=(this.width()/this.settings.items).toFixed(3)-this.settings.margin,c=null,d=this._items.length,e=!this.settings.autoWidth,f=[];for(a.items={merge:!1,width:b};d--;)c=this._mergers[d],c=this.settings.mergeFit&&Math.min(c,this.settings.items)||c,a.items.merge=c>1||a.items.merge,f[d]=e?b*c:this._items[d].width();this._widths=f}},{filter:["items","settings"],run:function(){var b=[],c=this._items,d=this.settings,e=Math.max(2*d.items,4),f=2*Math.ceil(c.length/2),g=d.loop&&c.length?d.rewind?e:Math.max(e,f):0,h="",i="";for(g/=2;g--;)b.push(this.normalize(b.length/2,!0)),h+=c[b[b.length-1]][0].outerHTML,b.push(this.normalize(c.length-1-(b.length-1)/2,!0)),i=c[b[b.length-1]][0].outerHTML+i;this._clones=b,a(h).addClass("cloned").appendTo(this.$stage),a(i).addClass("cloned").prependTo(this.$stage)}},{filter:["width","items","settings"],run:function(){for(var a=this.settings.rtl?1:-1,b=this._clones.length+this._items.length,c=-1,d=0,e=0,f=[];++c",h)||this.op(b,"<",g)&&this.op(b,">",h))&&i.push(c);this.$stage.children(".active").removeClass("active"),this.$stage.children(":eq("+i.join("), :eq(")+")").addClass("active"),this.settings.center&&(this.$stage.children(".center").removeClass("center"),this.$stage.children().eq(this.current()).addClass("center"))}}],e.prototype.initialize=function(){if(this.enter("initializing"),this.trigger("initialize"),this.$element.toggleClass(this.settings.rtlClass,this.settings.rtl),this.settings.autoWidth&&!this.is("pre-loading")){var b,c,e;b=this.$element.find("img"),c=this.settings.nestedItemSelector?"."+this.settings.nestedItemSelector:d,e=this.$element.children(c).width(),b.length&&e<=0&&this.preloadAutoWidthImages(b)}this.$element.addClass(this.options.loadingClass),this.$stage=a("<"+this.settings.stageElement+' class="'+this.settings.stageClass+'"/>').wrap('
'),this.$element.append(this.$stage.parent()),this.replace(this.$element.children().not(this.$stage.parent())),this.$element.is(":visible")?this.refresh():this.invalidate("width"),this.$element.removeClass(this.options.loadingClass).addClass(this.options.loadedClass),this.registerEventHandlers(),this.leave("initializing"),this.trigger("initialized")},e.prototype.setup=function(){var b=this.viewport(),c=this.options.responsive,d=-1,e=null;c?(a.each(c,function(a){a<=b&&a>d&&(d=Number(a))}),e=a.extend({},this.options,c[d]),"function"==typeof e.stagePadding&&(e.stagePadding=e.stagePadding()),delete e.responsive,e.responsiveClass&&this.$element.attr("class",this.$element.attr("class").replace(new RegExp("("+this.options.responsiveClass+"-)\\S+\\s","g"),"$1"+d))):e=a.extend({},this.options),this.trigger("change",{property:{name:"settings",value:e}}),this._breakpoint=d,this.settings=e,this.invalidate("settings"),this.trigger("changed",{property:{name:"settings",value:this.settings}})},e.prototype.optionsLogic=function(){this.settings.autoWidth&&(this.settings.stagePadding=!1,this.settings.merge=!1)},e.prototype.prepare=function(b){var c=this.trigger("prepare",{content:b});return c.data||(c.data=a("<"+this.settings.itemElement+"/>").addClass(this.options.itemClass).append(b)),this.trigger("prepared",{content:c.data}),c.data},e.prototype.update=function(){for(var b=0,c=this._pipe.length,d=a.proxy(function(a){return this[a]},this._invalidated),e={};b0)&&this._pipe[b].run(e),b++;this._invalidated={},!this.is("valid")&&this.enter("valid")},e.prototype.width=function(a){switch(a=a||e.Width.Default){case e.Width.Inner:case e.Width.Outer:return this._width;default:return this._width-2*this.settings.stagePadding+this.settings.margin}},e.prototype.refresh=function(){this.enter("refreshing"),this.trigger("refresh"),this.setup(),this.optionsLogic(),this.$element.addClass(this.options.refreshClass),this.update(),this.$element.removeClass(this.options.refreshClass),this.leave("refreshing"),this.trigger("refreshed")},e.prototype.onThrottledResize=function(){b.clearTimeout(this.resizeTimer),this.resizeTimer=b.setTimeout(this._handlers.onResize,this.settings.responsiveRefreshRate)},e.prototype.onResize=function(){return!!this._items.length&&(this._width!==this.$element.width()&&(!!this.$element.is(":visible")&&(this.enter("resizing"),this.trigger("resize").isDefaultPrevented()?(this.leave("resizing"),!1):(this.invalidate("width"),this.refresh(),this.leave("resizing"),void this.trigger("resized")))))},e.prototype.registerEventHandlers=function(){a.support.transition&&this.$stage.on(a.support.transition.end+".owl.core",a.proxy(this.onTransitionEnd,this)),this.settings.responsive!==!1&&this.on(b,"resize",this._handlers.onThrottledResize),this.settings.mouseDrag&&(this.$element.addClass(this.options.dragClass),this.$stage.on("mousedown.owl.core",a.proxy(this.onDragStart,this)),this.$stage.on("dragstart.owl.core selectstart.owl.core",function(){return!1})),this.settings.touchDrag&&(this.$stage.on("touchstart.owl.core",a.proxy(this.onDragStart,this)),this.$stage.on("touchcancel.owl.core",a.proxy(this.onDragEnd,this)))},e.prototype.onDragStart=function(b){var d=null;3!==b.which&&(a.support.transform?(d=this.$stage.css("transform").replace(/.*\(|\)| /g,"").split(","),d={x:d[16===d.length?12:4],y:d[16===d.length?13:5]}):(d=this.$stage.position(),d={x:this.settings.rtl?d.left+this.$stage.width()-this.width()+this.settings.margin:d.left,y:d.top}),this.is("animating")&&(a.support.transform?this.animate(d.x):this.$stage.stop(),this.invalidate("position")),this.$element.toggleClass(this.options.grabClass,"mousedown"===b.type),this.speed(0),this._drag.time=(new Date).getTime(),this._drag.target=a(b.target),this._drag.stage.start=d,this._drag.stage.current=d,this._drag.pointer=this.pointer(b),a(c).on("mouseup.owl.core touchend.owl.core",a.proxy(this.onDragEnd,this)),a(c).one("mousemove.owl.core touchmove.owl.core",a.proxy(function(b){var d=this.difference(this._drag.pointer,this.pointer(b));a(c).on("mousemove.owl.core touchmove.owl.core",a.proxy(this.onDragMove,this)),Math.abs(d.x)0^this.settings.rtl?"left":"right";a(c).off(".owl.core"),this.$element.removeClass(this.options.grabClass),(0!==d.x&&this.is("dragging")||!this.is("valid"))&&(this.speed(this.settings.dragEndSpeed||this.settings.smartSpeed),this.current(this.closest(e.x,0!==d.x?f:this._drag.direction)),this.invalidate("position"),this.update(),this._drag.direction=f,(Math.abs(d.x)>3||(new Date).getTime()-this._drag.time>300)&&this._drag.target.one("click.owl.core",function(){return!1})),this.is("dragging")&&(this.leave("dragging"),this.trigger("dragged"))},e.prototype.closest=function(b,c){var d=-1,e=30,f=this.width(),g=this.coordinates();return this.settings.freeDrag||a.each(g,a.proxy(function(a,h){return"left"===c&&b>h-e&&bh-f-e&&b",g[a+1]||h-f)&&(d="left"===c?a+1:a),d===-1},this)),this.settings.loop||(this.op(b,">",g[this.minimum()])?d=b=this.minimum():this.op(b,"<",g[this.maximum()])&&(d=b=this.maximum())),d},e.prototype.animate=function(b){var c=this.speed()>0;this.is("animating")&&this.onTransitionEnd(),c&&(this.enter("animating"),this.trigger("translate")),a.support.transform3d&&a.support.transition?this.$stage.css({transform:"translate3d("+b+"px,0px,0px)",transition:this.speed()/1e3+"s"}):c?this.$stage.animate({left:b+"px"},this.speed(),this.settings.fallbackEasing,a.proxy(this.onTransitionEnd,this)):this.$stage.css({left:b+"px"})},e.prototype.is=function(a){return this._states.current[a]&&this._states.current[a]>0},e.prototype.current=function(a){if(a===d)return this._current;if(0===this._items.length)return d;if(a=this.normalize(a),this._current!==a){var b=this.trigger("change",{property:{name:"position",value:a}});b.data!==d&&(a=this.normalize(b.data)),this._current=a,this.invalidate("position"),this.trigger("changed",{property:{name:"position",value:this._current}})}return this._current},e.prototype.invalidate=function(b){return"string"===a.type(b)&&(this._invalidated[b]=!0,this.is("valid")&&this.leave("valid")),a.map(this._invalidated,function(a,b){return b})},e.prototype.reset=function(a){a=this.normalize(a),a!==d&&(this._speed=0,this._current=a,this.suppress(["translate","translated"]),this.animate(this.coordinates(a)),this.release(["translate","translated"]))},e.prototype.normalize=function(a,b){var c=this._items.length,e=b?0:this._clones.length;return!this.isNumeric(a)||c<1?a=d:(a<0||a>=c+e)&&(a=((a-e/2)%c+c)%c+e/2),a},e.prototype.relative=function(a){return a-=this._clones.length/2,this.normalize(a,!0)},e.prototype.maximum=function(a){var b,c,d,e=this.settings,f=this._coordinates.length;if(e.loop)f=this._clones.length/2+this._items.length-1;else if(e.autoWidth||e.merge){for(b=this._items.length,c=this._items[--b].width(),d=this.$element.width();b--&&(c+=this._items[b].width()+this.settings.margin,!(c>d)););f=b+1}else f=e.center?this._items.length-1:this._items.length-e.items;return a&&(f-=this._clones.length/2),Math.max(f,0)},e.prototype.minimum=function(a){return a?0:this._clones.length/2},e.prototype.items=function(a){return a===d?this._items.slice():(a=this.normalize(a,!0),this._items[a])},e.prototype.mergers=function(a){return a===d?this._mergers.slice():(a=this.normalize(a,!0),this._mergers[a])},e.prototype.clones=function(b){var c=this._clones.length/2,e=c+this._items.length,f=function(a){return a%2===0?e+a/2:c-(a+1)/2};return b===d?a.map(this._clones,function(a,b){return f(b)}):a.map(this._clones,function(a,c){return a===b?f(c):null})},e.prototype.speed=function(a){return a!==d&&(this._speed=a),this._speed},e.prototype.coordinates=function(b){var c,e=1,f=b-1;return b===d?a.map(this._coordinates,a.proxy(function(a,b){return this.coordinates(b)},this)):(this.settings.center?(this.settings.rtl&&(e=-1,f=b+1),c=this._coordinates[b],c+=(this.width()-c+(this._coordinates[f]||0))/2*e):c=this._coordinates[f]||0,c=Math.ceil(c))},e.prototype.duration=function(a,b,c){return 0===c?0:Math.min(Math.max(Math.abs(b-a),1),6)*Math.abs(c||this.settings.smartSpeed)},e.prototype.to=function(a,b){var c=this.current(),d=null,e=a-this.relative(c),f=(e>0)-(e<0),g=this._items.length,h=this.minimum(),i=this.maximum();this.settings.loop?(!this.settings.rewind&&Math.abs(e)>g/2&&(e+=f*-1*g),a=c+e,d=((a-h)%g+g)%g+h,d!==a&&d-e<=i&&d-e>0&&(c=d-e,a=d,this.reset(c))):this.settings.rewind?(i+=1,a=(a%i+i)%i):a=Math.max(h,Math.min(i,a)),this.speed(this.duration(c,a,b)),this.current(a),this.$element.is(":visible")&&this.update()},e.prototype.next=function(a){a=a||!1,this.to(this.relative(this.current())+1,a)},e.prototype.prev=function(a){a=a||!1,this.to(this.relative(this.current())-1,a)},e.prototype.onTransitionEnd=function(a){if(a!==d&&(a.stopPropagation(),(a.target||a.srcElement||a.originalTarget)!==this.$stage.get(0)))return!1;this.leave("animating"),this.trigger("translated")},e.prototype.viewport=function(){var d;return this.options.responsiveBaseElement!==b?d=a(this.options.responsiveBaseElement).width():b.innerWidth?d=b.innerWidth:c.documentElement&&c.documentElement.clientWidth?d=c.documentElement.clientWidth:console.warn("Can not detect viewport width."),d},e.prototype.replace=function(b){this.$stage.empty(),this._items=[],b&&(b=b instanceof jQuery?b:a(b)),this.settings.nestedItemSelector&&(b=b.find("."+this.settings.nestedItemSelector)),b.filter(function(){return 1===this.nodeType}).each(a.proxy(function(a,b){b=this.prepare(b),this.$stage.append(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)},this)),this.reset(this.isNumeric(this.settings.startPosition)?this.settings.startPosition:0),this.invalidate("items")},e.prototype.add=function(b,c){var e=this.relative(this._current);c=c===d?this._items.length:this.normalize(c,!0),b=b instanceof jQuery?b:a(b),this.trigger("add",{content:b,position:c}),b=this.prepare(b),0===this._items.length||c===this._items.length?(0===this._items.length&&this.$stage.append(b),0!==this._items.length&&this._items[c-1].after(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)):(this._items[c].before(b),this._items.splice(c,0,b),this._mergers.splice(c,0,1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)),this._items[e]&&this.reset(this._items[e].index()),this.invalidate("items"),this.trigger("added",{content:b,position:c})},e.prototype.remove=function(a){a=this.normalize(a,!0),a!==d&&(this.trigger("remove",{content:this._items[a],position:a}),this._items[a].remove(),this._items.splice(a,1),this._mergers.splice(a,1),this.invalidate("items"),this.trigger("removed",{content:null,position:a}))},e.prototype.preloadAutoWidthImages=function(b){b.each(a.proxy(function(b,c){this.enter("pre-loading"),c=a(c),a(new Image).one("load",a.proxy(function(a){c.attr("src",a.target.src),c.css("opacity",1),this.leave("pre-loading"),!this.is("pre-loading")&&!this.is("initializing")&&this.refresh()},this)).attr("src",c.attr("src")||c.attr("data-src")||c.attr("data-src-retina"))},this))},e.prototype.destroy=function(){this.$element.off(".owl.core"),this.$stage.off(".owl.core"),a(c).off(".owl.core"),this.settings.responsive!==!1&&(b.clearTimeout(this.resizeTimer),this.off(b,"resize",this._handlers.onThrottledResize));for(var d in this._plugins)this._plugins[d].destroy();this.$stage.children(".cloned").remove(),this.$stage.unwrap(),this.$stage.children().contents().unwrap(),this.$stage.children().unwrap(),this.$element.removeClass(this.options.refreshClass).removeClass(this.options.loadingClass).removeClass(this.options.loadedClass).removeClass(this.options.rtlClass).removeClass(this.options.dragClass).removeClass(this.options.grabClass).attr("class",this.$element.attr("class").replace(new RegExp(this.options.responsiveClass+"-\\S+\\s","g"),"")).removeData("owl.carousel")},e.prototype.op=function(a,b,c){var d=this.settings.rtl;switch(b){case"<":return d?a>c:a":return d?ac;case">=":return d?a<=c:a>=c;case"<=":return d?a>=c:a<=c}},e.prototype.on=function(a,b,c,d){a.addEventListener?a.addEventListener(b,c,d):a.attachEvent&&a.attachEvent("on"+b,c)},e.prototype.off=function(a,b,c,d){a.removeEventListener?a.removeEventListener(b,c,d):a.detachEvent&&a.detachEvent("on"+b,c)},e.prototype.trigger=function(b,c,d,f,g){var h={item:{count:this._items.length,index:this.current()}},i=a.camelCase(a.grep(["on",b,d],function(a){return a}).join("-").toLowerCase()),j=a.Event([b,"owl",d||"carousel"].join(".").toLowerCase(),a.extend({relatedTarget:this},h,c));return this._supress[b]||(a.each(this._plugins,function(a,b){b.onTrigger&&b.onTrigger(j)}),this.register({type:e.Type.Event,name:b}),this.$element.trigger(j),this.settings&&"function"==typeof this.settings[i]&&this.settings[i].call(this,j)),j},e.prototype.enter=function(b){a.each([b].concat(this._states.tags[b]||[]),a.proxy(function(a,b){this._states.current[b]===d&&(this._states.current[b]=0),this._states.current[b]++},this))},e.prototype.leave=function(b){a.each([b].concat(this._states.tags[b]||[]),a.proxy(function(a,b){this._states.current[b]--},this))},e.prototype.register=function(b){if(b.type===e.Type.Event){if(a.event.special[b.name]||(a.event.special[b.name]={}),!a.event.special[b.name].owl){var c=a.event.special[b.name]._default;a.event.special[b.name]._default=function(a){return!c||!c.apply||a.namespace&&a.namespace.indexOf("owl")!==-1?a.namespace&&a.namespace.indexOf("owl")>-1:c.apply(this,arguments)},a.event.special[b.name].owl=!0}}else b.type===e.Type.State&&(this._states.tags[b.name]?this._states.tags[b.name]=this._states.tags[b.name].concat(b.tags):this._states.tags[b.name]=b.tags,this._states.tags[b.name]=a.grep(this._states.tags[b.name],a.proxy(function(c,d){return a.inArray(c,this._states.tags[b.name])===d},this)))},e.prototype.suppress=function(b){a.each(b,a.proxy(function(a,b){this._supress[b]=!0},this))},e.prototype.release=function(b){a.each(b,a.proxy(function(a,b){delete this._supress[b]},this))},e.prototype.pointer=function(a){var c={x:null,y:null};return a=a.originalEvent||a||b.event,a=a.touches&&a.touches.length?a.touches[0]:a.changedTouches&&a.changedTouches.length?a.changedTouches[0]:a,a.pageX?(c.x=a.pageX,c.y=a.pageY):(c.x=a.clientX,c.y=a.clientY),c},e.prototype.isNumeric=function(a){return!isNaN(parseFloat(a))},e.prototype.difference=function(a,b){return{x:a.x-b.x,y:a.y-b.y}},a.fn.owlCarousel=function(b){var c=Array.prototype.slice.call(arguments,1);return this.each(function(){var d=a(this),f=d.data("owl.carousel");f||(f=new e(this,"object"==typeof b&&b),d.data("owl.carousel",f),a.each(["next","prev","to","destroy","refresh","replace","add","remove"],function(b,c){f.register({type:e.Type.Event,name:c}),f.$element.on(c+".owl.carousel.core",a.proxy(function(a){a.namespace&&a.relatedTarget!==this&&(this.suppress([c]),f[c].apply(this,[].slice.call(arguments,1)),this.release([c]))},f))})),"string"==typeof b&&"_"!==b.charAt(0)&&f[b].apply(f,c)})},a.fn.owlCarousel.Constructor=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._interval=null,this._visible=null,this._handlers={"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoRefresh&&this.watch()},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers)};e.Defaults={autoRefresh:!0,autoRefreshInterval:500},e.prototype.watch=function(){this._interval||(this._visible=this._core.$element.is(":visible"),this._interval=b.setInterval(a.proxy(this.refresh,this),this._core.settings.autoRefreshInterval))},e.prototype.refresh=function(){this._core.$element.is(":visible")!==this._visible&&(this._visible=!this._visible,this._core.$element.toggleClass("owl-hidden",!this._visible),this._visible&&this._core.invalidate("width")&&this._core.refresh())},e.prototype.destroy=function(){var a,c;b.clearInterval(this._interval);for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoRefresh=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._loaded=[],this._handlers={"initialized.owl.carousel change.owl.carousel resized.owl.carousel":a.proxy(function(b){if(b.namespace&&this._core.settings&&this._core.settings.lazyLoad&&(b.property&&"position"==b.property.name||"initialized"==b.type))for(var c=this._core.settings,e=c.center&&Math.ceil(c.items/2)||c.items,f=c.center&&e*-1||0,g=(b.property&&b.property.value!==d?b.property.value:this._core.current())+f,h=this._core.clones().length,i=a.proxy(function(a,b){this.load(b)},this);f++-1||(e.each(a.proxy(function(c,d){var e,f=a(d),g=b.devicePixelRatio>1&&f.attr("data-src-retina")||f.attr("data-src");this._core.trigger("load",{element:f,url:g},"lazy"),f.is("img")?f.one("load.owl.lazy",a.proxy(function(){f.css("opacity",1),this._core.trigger("loaded",{element:f,url:g},"lazy")},this)).attr("src",g):(e=new Image,e.onload=a.proxy(function(){f.css({"background-image":'url("'+g+'")',opacity:"1"}),this._core.trigger("loaded",{element:f,url:g},"lazy")},this),e.src=g)},this)),this._loaded.push(d.get(0)))},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this._core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Lazy=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._handlers={"initialized.owl.carousel refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&this.update()},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&"position"==a.property.name&&this.update()},this),"loaded.owl.lazy":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&a.element.closest("."+this._core.settings.itemClass).index()===this._core.current()&&this.update()},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers)};e.Defaults={autoHeight:!1,autoHeightClass:"owl-height"},e.prototype.update=function(){var b=this._core._current,c=b+this._core.settings.items,d=this._core.$stage.children().toArray().slice(b,c),e=[],f=0;a.each(d,function(b,c){e.push(a(c).height())}),f=Math.max.apply(null,e),this._core.$stage.parent().height(f).addClass(this._core.settings.autoHeightClass)},e.prototype.destroy=function(){var a,b;for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoHeight=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._videos={},this._playing=null,this._handlers={"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.register({type:"state",name:"playing",tags:["interacting"]})},this),"resize.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.video&&this.isInFullScreen()&&a.preventDefault()},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.is("resizing")&&this._core.$stage.find(".cloned .owl-video-frame").remove()},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"===a.property.name&&this._playing&&this.stop()},this),"prepared.owl.carousel":a.proxy(function(b){if(b.namespace){var c=a(b.content).find(".owl-video");c.length&&(c.css("display","none"),this.fetch(c,a(b.content)))}},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers),this._core.$element.on("click.owl.video",".owl-video-play-icon",a.proxy(function(a){this.play(a)},this))};e.Defaults={video:!1,videoHeight:!1,videoWidth:!1},e.prototype.fetch=function(a,b){var c=function(){return a.attr("data-vimeo-id")?"vimeo":a.attr("data-vzaar-id")?"vzaar":"youtube"}(),d=a.attr("data-vimeo-id")||a.attr("data-youtube-id")||a.attr("data-vzaar-id"),e=a.attr("data-width")||this._core.settings.videoWidth,f=a.attr("data-height")||this._core.settings.videoHeight,g=a.attr("href");if(!g)throw new Error("Missing video URL.");if(d=g.match(/(http:|https:|)\/\/(player.|www.|app.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com)|vzaar\.com)\/(video\/|videos\/|embed\/|channels\/.+\/|groups\/.+\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/),d[3].indexOf("youtu")>-1)c="youtube";else if(d[3].indexOf("vimeo")>-1)c="vimeo";else{if(!(d[3].indexOf("vzaar")>-1))throw new Error("Video URL not supported.");c="vzaar"}d=d[6],this._videos[g]={type:c,id:d,width:e,height:f},b.attr("data-video",g),this.thumbnail(a,this._videos[g])},e.prototype.thumbnail=function(b,c){var d,e,f,g=c.width&&c.height?'style="width:'+c.width+"px;height:"+c.height+'px;"':"",h=b.find("img"),i="src",j="",k=this._core.settings,l=function(a){e='
',d=k.lazyLoad?'
':'
',b.after(d),b.after(e)};if(b.wrap('
"),this._core.settings.lazyLoad&&(i="data-src",j="owl-lazy"),h.length)return l(h.attr(i)),h.remove(),!1;"youtube"===c.type?(f="//img.youtube.com/vi/"+c.id+"/hqdefault.jpg",l(f)):"vimeo"===c.type?a.ajax({type:"GET",url:"//vimeo.com/api/v2/video/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a[0].thumbnail_large,l(f)}}):"vzaar"===c.type&&a.ajax({type:"GET",url:"//vzaar.com/api/videos/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a.framegrab_url,l(f)}})},e.prototype.stop=function(){this._core.trigger("stop",null,"video"),this._playing.find(".owl-video-frame").remove(),this._playing.removeClass("owl-video-playing"),this._playing=null,this._core.leave("playing"),this._core.trigger("stopped",null,"video")},e.prototype.play=function(b){var c,d=a(b.target),e=d.closest("."+this._core.settings.itemClass),f=this._videos[e.attr("data-video")],g=f.width||"100%",h=f.height||this._core.$stage.height();this._playing||(this._core.enter("playing"),this._core.trigger("play",null,"video"),e=this._core.items(this._core.relative(e.index())),this._core.reset(e.index()),"youtube"===f.type?c='':"vimeo"===f.type?c='':"vzaar"===f.type&&(c=''),a('
'+c+"
").insertAfter(e.find(".owl-video")),this._playing=e.addClass("owl-video-playing"))},e.prototype.isInFullScreen=function(){var b=c.fullscreenElement||c.mozFullScreenElement||c.webkitFullscreenElement;return b&&a(b).parent().hasClass("owl-video-frame")},e.prototype.destroy=function(){var a,b;this._core.$element.off("click.owl.video");for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Video=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this.core=b,this.core.options=a.extend({},e.Defaults,this.core.options),this.swapping=!0,this.previous=d,this.next=d,this.handlers={"change.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&(this.previous=this.core.current(),this.next=a.property.value)},this),"drag.owl.carousel dragged.owl.carousel translated.owl.carousel":a.proxy(function(a){a.namespace&&(this.swapping="translated"==a.type)},this),"translate.owl.carousel":a.proxy(function(a){a.namespace&&this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)};e.Defaults={animateOut:!1,animateIn:!1},e.prototype.swap=function(){if(1===this.core.settings.items&&a.support.animation&&a.support.transition){this.core.speed(0);var b,c=a.proxy(this.clear,this),d=this.core.$stage.children().eq(this.previous),e=this.core.$stage.children().eq(this.next),f=this.core.settings.animateIn,g=this.core.settings.animateOut;this.core.current()!==this.previous&&(g&&(b=this.core.coordinates(this.previous)-this.core.coordinates(this.next),d.one(a.support.animation.end,c).css({left:b+"px"}).addClass("animated owl-animated-out").addClass(g)),f&&e.one(a.support.animation.end,c).addClass("animated owl-animated-in").addClass(f))}},e.prototype.clear=function(b){a(b.target).css({left:""}).removeClass("animated owl-animated-out owl-animated-in").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.onTransitionEnd()},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this.core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)}, +a.fn.owlCarousel.Constructor.Plugins.Animate=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._timeout=null,this._paused=!1,this._handlers={"changed.owl.carousel":a.proxy(function(a){a.namespace&&"settings"===a.property.name?this._core.settings.autoplay?this.play():this.stop():a.namespace&&"position"===a.property.name&&this._core.settings.autoplay&&this._setAutoPlayInterval()},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoplay&&this.play()},this),"play.owl.autoplay":a.proxy(function(a,b,c){a.namespace&&this.play(b,c)},this),"stop.owl.autoplay":a.proxy(function(a){a.namespace&&this.stop()},this),"mouseover.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"mouseleave.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.play()},this),"touchstart.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"touchend.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this.play()},this)},this._core.$element.on(this._handlers),this._core.options=a.extend({},e.Defaults,this._core.options)};e.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},e.prototype.play=function(a,b){this._paused=!1,this._core.is("rotating")||(this._core.enter("rotating"),this._setAutoPlayInterval())},e.prototype._getNextTimeout=function(d,e){return this._timeout&&b.clearTimeout(this._timeout),b.setTimeout(a.proxy(function(){this._paused||this._core.is("busy")||this._core.is("interacting")||c.hidden||this._core.next(e||this._core.settings.autoplaySpeed)},this),d||this._core.settings.autoplayTimeout)},e.prototype._setAutoPlayInterval=function(){this._timeout=this._getNextTimeout()},e.prototype.stop=function(){this._core.is("rotating")&&(b.clearTimeout(this._timeout),this._core.leave("rotating"))},e.prototype.pause=function(){this._core.is("rotating")&&(this._paused=!0)},e.prototype.destroy=function(){var a,b;this.stop();for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.autoplay=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(b){this._core=b,this._initialized=!1,this._pages=[],this._controls={},this._templates=[],this.$element=this._core.$element,this._overrides={next:this._core.next,prev:this._core.prev,to:this._core.to},this._handlers={"prepared.owl.carousel":a.proxy(function(b){b.namespace&&this._core.settings.dotsData&&this._templates.push('
'+a(b.content).find("[data-dot]").addBack("[data-dot]").attr("data-dot")+"
")},this),"added.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,0,this._templates.pop())},this),"remove.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,1)},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&this.draw()},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&!this._initialized&&(this._core.trigger("initialize",null,"navigation"),this.initialize(),this.update(),this.draw(),this._initialized=!0,this._core.trigger("initialized",null,"navigation"))},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._initialized&&(this._core.trigger("refresh",null,"navigation"),this.update(),this.draw(),this._core.trigger("refreshed",null,"navigation"))},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers)};e.Defaults={nav:!1,navText:["prev","next"],navSpeed:!1,navElement:"div",navContainer:!1,navContainerClass:"owl-nav",navClass:["owl-prev","owl-next"],slideBy:1,dotClass:"owl-dot",dotsClass:"owl-dots",dots:!0,dotsEach:!1,dotsData:!1,dotsSpeed:!1,dotsContainer:!1},e.prototype.initialize=function(){var b,c=this._core.settings;this._controls.$relative=(c.navContainer?a(c.navContainer):a("
").addClass(c.navContainerClass).appendTo(this.$element)).addClass("disabled"),this._controls.$previous=a("<"+c.navElement+">").addClass(c.navClass[0]).html(c.navText[0]).prependTo(this._controls.$relative).on("click",a.proxy(function(a){this.prev(c.navSpeed)},this)),this._controls.$next=a("<"+c.navElement+">").addClass(c.navClass[1]).html(c.navText[1]).appendTo(this._controls.$relative).on("click",a.proxy(function(a){this.next(c.navSpeed)},this)),c.dotsData||(this._templates=[a("
").addClass(c.dotClass).append(a("")).prop("outerHTML")]),this._controls.$absolute=(c.dotsContainer?a(c.dotsContainer):a("
").addClass(c.dotsClass).appendTo(this.$element)).addClass("disabled"),this._controls.$absolute.on("click","div",a.proxy(function(b){var d=a(b.target).parent().is(this._controls.$absolute)?a(b.target).index():a(b.target).parent().index();b.preventDefault(),this.to(d,c.dotsSpeed)},this));for(b in this._overrides)this._core[b]=a.proxy(this[b],this)},e.prototype.destroy=function(){var a,b,c,d;for(a in this._handlers)this.$element.off(a,this._handlers[a]);for(b in this._controls)this._controls[b].remove();for(d in this.overides)this._core[d]=this._overrides[d];for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},e.prototype.update=function(){var a,b,c,d=this._core.clones().length/2,e=d+this._core.items().length,f=this._core.maximum(!0),g=this._core.settings,h=g.center||g.autoWidth||g.dotsData?1:g.dotsEach||g.items;if("page"!==g.slideBy&&(g.slideBy=Math.min(g.slideBy,g.items)),g.dots||"page"==g.slideBy)for(this._pages=[],a=d,b=0,c=0;a=h||0===b){if(this._pages.push({start:Math.min(f,a-d),end:a-d+h-1}),Math.min(f,a-d)===f)break;b=0,++c}b+=this._core.mergers(this._core.relative(a))}},e.prototype.draw=function(){var b,c=this._core.settings,d=this._core.items().length<=c.items,e=this._core.relative(this._core.current()),f=c.loop||c.rewind;this._controls.$relative.toggleClass("disabled",!c.nav||d),c.nav&&(this._controls.$previous.toggleClass("disabled",!f&&e<=this._core.minimum(!0)),this._controls.$next.toggleClass("disabled",!f&&e>=this._core.maximum(!0))),this._controls.$absolute.toggleClass("disabled",!c.dots||d),c.dots&&(b=this._pages.length-this._controls.$absolute.children().length,c.dotsData&&0!==b?this._controls.$absolute.html(this._templates.join("")):b>0?this._controls.$absolute.append(new Array(b+1).join(this._templates[0])):b<0&&this._controls.$absolute.children().slice(b).remove(),this._controls.$absolute.find(".active").removeClass("active"),this._controls.$absolute.children().eq(a.inArray(this.current(),this._pages)).addClass("active"))},e.prototype.onTrigger=function(b){var c=this._core.settings;b.page={index:a.inArray(this.current(),this._pages),count:this._pages.length,size:c&&(c.center||c.autoWidth||c.dotsData?1:c.dotsEach||c.items)}},e.prototype.current=function(){var b=this._core.relative(this._core.current());return a.grep(this._pages,a.proxy(function(a,c){return a.start<=b&&a.end>=b},this)).pop()},e.prototype.getPosition=function(b){var c,d,e=this._core.settings;return"page"==e.slideBy?(c=a.inArray(this.current(),this._pages),d=this._pages.length,b?++c:--c,c=this._pages[(c%d+d)%d].start):(c=this._core.relative(this._core.current()),d=this._core.items().length,b?c+=e.slideBy:c-=e.slideBy),c},e.prototype.next=function(b){a.proxy(this._overrides.to,this._core)(this.getPosition(!0),b)},e.prototype.prev=function(b){a.proxy(this._overrides.to,this._core)(this.getPosition(!1),b)},e.prototype.to=function(b,c,d){var e;!d&&this._pages.length?(e=this._pages.length,a.proxy(this._overrides.to,this._core)(this._pages[(b%e+e)%e].start,c)):a.proxy(this._overrides.to,this._core)(b,c)},a.fn.owlCarousel.Constructor.Plugins.Navigation=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(c){this._core=c,this._hashes={},this.$element=this._core.$element,this._handlers={"initialized.owl.carousel":a.proxy(function(c){c.namespace&&"URLHash"===this._core.settings.startPosition&&a(b).trigger("hashchange.owl.navigation")},this),"prepared.owl.carousel":a.proxy(function(b){if(b.namespace){var c=a(b.content).find("[data-hash]").addBack("[data-hash]").attr("data-hash");if(!c)return;this._hashes[c]=b.content}},this),"changed.owl.carousel":a.proxy(function(c){if(c.namespace&&"position"===c.property.name){var d=this._core.items(this._core.relative(this._core.current())),e=a.map(this._hashes,function(a,b){return a===d?b:null}).join();if(!e||b.location.hash.slice(1)===e)return;b.location.hash=e}},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers),a(b).on("hashchange.owl.navigation",a.proxy(function(a){var c=b.location.hash.substring(1),e=this._core.$stage.children(),f=this._hashes[c]&&e.index(this._hashes[c]);f!==d&&f!==this._core.current()&&this._core.to(this._core.relative(f),!1,!0)},this))};e.Defaults={URLhashListener:!1},e.prototype.destroy=function(){var c,d;a(b).off("hashchange.owl.navigation");for(c in this._handlers)this._core.$element.off(c,this._handlers[c]);for(d in Object.getOwnPropertyNames(this))"function"!=typeof this[d]&&(this[d]=null)},a.fn.owlCarousel.Constructor.Plugins.Hash=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){function e(b,c){var e=!1,f=b.charAt(0).toUpperCase()+b.slice(1);return a.each((b+" "+h.join(f+" ")+f).split(" "),function(a,b){if(g[b]!==d)return e=!c||b,!1}),e}function f(a){return e(a,!0)}var g=a("").get(0).style,h="Webkit Moz O ms".split(" "),i={transition:{end:{WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd",transition:"transitionend"}},animation:{end:{WebkitAnimation:"webkitAnimationEnd",MozAnimation:"animationend",OAnimation:"oAnimationEnd",animation:"animationend"}}},j={csstransforms:function(){return!!e("transform")},csstransforms3d:function(){return!!e("perspective")},csstransitions:function(){return!!e("transition")},cssanimations:function(){return!!e("animation")}};j.csstransitions()&&(a.support.transition=new String(f("transition")),a.support.transition.end=i.transition.end[a.support.transition]),j.cssanimations()&&(a.support.animation=new String(f("animation")),a.support.animation.end=i.animation.end[a.support.animation]),j.csstransforms()&&(a.support.transform=new String(f("transform")),a.support.transform3d=j.csstransforms3d())}(window.Zepto||window.jQuery,window,document); \ No newline at end of file diff --git a/work/recovery-ui/recovery/static/scripts/lib/waypoints/links.php b/work/recovery-ui/recovery/static/scripts/lib/waypoints/links.php new file mode 100644 index 0000000..ba777b5 --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/lib/waypoints/links.php @@ -0,0 +1,5 @@ + 'lib/waypoints/waypoints.min.js' + ); +?> diff --git a/work/recovery-ui/recovery/static/scripts/lib/waypoints/waypoints.min.js b/work/recovery-ui/recovery/static/scripts/lib/waypoints/waypoints.min.js new file mode 100644 index 0000000..609ece0 --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/lib/waypoints/waypoints.min.js @@ -0,0 +1,7 @@ +/*! +Waypoints - 4.0.1 +Copyright © 2011-2016 Caleb Troughton +Licensed under the MIT license. +https://github.com/imakewebthings/waypoints/blob/master/licenses.txt +*/ +!function(){"use strict";function t(o){if(!o)throw new Error("No options passed to Waypoint constructor");if(!o.element)throw new Error("No element option passed to Waypoint constructor");if(!o.handler)throw new Error("No handler option passed to Waypoint constructor");this.key="waypoint-"+e,this.options=t.Adapter.extend({},t.defaults,o),this.element=this.options.element,this.adapter=new t.Adapter(this.element),this.callback=o.handler,this.axis=this.options.horizontal?"horizontal":"vertical",this.enabled=this.options.enabled,this.triggerPoint=null,this.group=t.Group.findOrCreate({name:this.options.group,axis:this.axis}),this.context=t.Context.findOrCreateByElement(this.options.context),t.offsetAliases[this.options.offset]&&(this.options.offset=t.offsetAliases[this.options.offset]),this.group.add(this),this.context.add(this),i[this.key]=this,e+=1}var e=0,i={};t.prototype.queueTrigger=function(t){this.group.queueTrigger(this,t)},t.prototype.trigger=function(t){this.enabled&&this.callback&&this.callback.apply(this,t)},t.prototype.destroy=function(){this.context.remove(this),this.group.remove(this),delete i[this.key]},t.prototype.disable=function(){return this.enabled=!1,this},t.prototype.enable=function(){return this.context.refresh(),this.enabled=!0,this},t.prototype.next=function(){return this.group.next(this)},t.prototype.previous=function(){return this.group.previous(this)},t.invokeAll=function(t){var e=[];for(var o in i)e.push(i[o]);for(var n=0,r=e.length;r>n;n++)e[n][t]()},t.destroyAll=function(){t.invokeAll("destroy")},t.disableAll=function(){t.invokeAll("disable")},t.enableAll=function(){t.Context.refreshAll();for(var e in i)i[e].enabled=!0;return this},t.refreshAll=function(){t.Context.refreshAll()},t.viewportHeight=function(){return window.innerHeight||document.documentElement.clientHeight},t.viewportWidth=function(){return document.documentElement.clientWidth},t.adapters=[],t.defaults={context:window,continuous:!0,enabled:!0,group:"default",horizontal:!1,offset:0},t.offsetAliases={"bottom-in-view":function(){return this.context.innerHeight()-this.adapter.outerHeight()},"right-in-view":function(){return this.context.innerWidth()-this.adapter.outerWidth()}},window.Waypoint=t}(),function(){"use strict";function t(t){window.setTimeout(t,1e3/60)}function e(t){this.element=t,this.Adapter=n.Adapter,this.adapter=new this.Adapter(t),this.key="waypoint-context-"+i,this.didScroll=!1,this.didResize=!1,this.oldScroll={x:this.adapter.scrollLeft(),y:this.adapter.scrollTop()},this.waypoints={vertical:{},horizontal:{}},t.waypointContextKey=this.key,o[t.waypointContextKey]=this,i+=1,n.windowContext||(n.windowContext=!0,n.windowContext=new e(window)),this.createThrottledScrollHandler(),this.createThrottledResizeHandler()}var i=0,o={},n=window.Waypoint,r=window.onload;e.prototype.add=function(t){var e=t.options.horizontal?"horizontal":"vertical";this.waypoints[e][t.key]=t,this.refresh()},e.prototype.checkEmpty=function(){var t=this.Adapter.isEmptyObject(this.waypoints.horizontal),e=this.Adapter.isEmptyObject(this.waypoints.vertical),i=this.element==this.element.window;t&&e&&!i&&(this.adapter.off(".waypoints"),delete o[this.key])},e.prototype.createThrottledResizeHandler=function(){function t(){e.handleResize(),e.didResize=!1}var e=this;this.adapter.on("resize.waypoints",function(){e.didResize||(e.didResize=!0,n.requestAnimationFrame(t))})},e.prototype.createThrottledScrollHandler=function(){function t(){e.handleScroll(),e.didScroll=!1}var e=this;this.adapter.on("scroll.waypoints",function(){(!e.didScroll||n.isTouch)&&(e.didScroll=!0,n.requestAnimationFrame(t))})},e.prototype.handleResize=function(){n.Context.refreshAll()},e.prototype.handleScroll=function(){var t={},e={horizontal:{newScroll:this.adapter.scrollLeft(),oldScroll:this.oldScroll.x,forward:"right",backward:"left"},vertical:{newScroll:this.adapter.scrollTop(),oldScroll:this.oldScroll.y,forward:"down",backward:"up"}};for(var i in e){var o=e[i],n=o.newScroll>o.oldScroll,r=n?o.forward:o.backward;for(var s in this.waypoints[i]){var a=this.waypoints[i][s];if(null!==a.triggerPoint){var l=o.oldScroll=a.triggerPoint,p=l&&h,u=!l&&!h;(p||u)&&(a.queueTrigger(r),t[a.group.id]=a.group)}}}for(var c in t)t[c].flushTriggers();this.oldScroll={x:e.horizontal.newScroll,y:e.vertical.newScroll}},e.prototype.innerHeight=function(){return this.element==this.element.window?n.viewportHeight():this.adapter.innerHeight()},e.prototype.remove=function(t){delete this.waypoints[t.axis][t.key],this.checkEmpty()},e.prototype.innerWidth=function(){return this.element==this.element.window?n.viewportWidth():this.adapter.innerWidth()},e.prototype.destroy=function(){var t=[];for(var e in this.waypoints)for(var i in this.waypoints[e])t.push(this.waypoints[e][i]);for(var o=0,n=t.length;n>o;o++)t[o].destroy()},e.prototype.refresh=function(){var t,e=this.element==this.element.window,i=e?void 0:this.adapter.offset(),o={};this.handleScroll(),t={horizontal:{contextOffset:e?0:i.left,contextScroll:e?0:this.oldScroll.x,contextDimension:this.innerWidth(),oldScroll:this.oldScroll.x,forward:"right",backward:"left",offsetProp:"left"},vertical:{contextOffset:e?0:i.top,contextScroll:e?0:this.oldScroll.y,contextDimension:this.innerHeight(),oldScroll:this.oldScroll.y,forward:"down",backward:"up",offsetProp:"top"}};for(var r in t){var s=t[r];for(var a in this.waypoints[r]){var l,h,p,u,c,d=this.waypoints[r][a],f=d.options.offset,w=d.triggerPoint,y=0,g=null==w;d.element!==d.element.window&&(y=d.adapter.offset()[s.offsetProp]),"function"==typeof f?f=f.apply(d):"string"==typeof f&&(f=parseFloat(f),d.options.offset.indexOf("%")>-1&&(f=Math.ceil(s.contextDimension*f/100))),l=s.contextScroll-s.contextOffset,d.triggerPoint=Math.floor(y+l-f),h=w=s.oldScroll,u=h&&p,c=!h&&!p,!g&&u?(d.queueTrigger(s.backward),o[d.group.id]=d.group):!g&&c?(d.queueTrigger(s.forward),o[d.group.id]=d.group):g&&s.oldScroll>=d.triggerPoint&&(d.queueTrigger(s.forward),o[d.group.id]=d.group)}}return n.requestAnimationFrame(function(){for(var t in o)o[t].flushTriggers()}),this},e.findOrCreateByElement=function(t){return e.findByElement(t)||new e(t)},e.refreshAll=function(){for(var t in o)o[t].refresh()},e.findByElement=function(t){return o[t.waypointContextKey]},window.onload=function(){r&&r(),e.refreshAll()},n.requestAnimationFrame=function(e){var i=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||t;i.call(window,e)},n.Context=e}(),function(){"use strict";function t(t,e){return t.triggerPoint-e.triggerPoint}function e(t,e){return e.triggerPoint-t.triggerPoint}function i(t){this.name=t.name,this.axis=t.axis,this.id=this.name+"-"+this.axis,this.waypoints=[],this.clearTriggerQueues(),o[this.axis][this.name]=this}var o={vertical:{},horizontal:{}},n=window.Waypoint;i.prototype.add=function(t){this.waypoints.push(t)},i.prototype.clearTriggerQueues=function(){this.triggerQueues={up:[],down:[],left:[],right:[]}},i.prototype.flushTriggers=function(){for(var i in this.triggerQueues){var o=this.triggerQueues[i],n="up"===i||"left"===i;o.sort(n?e:t);for(var r=0,s=o.length;s>r;r+=1){var a=o[r];(a.options.continuous||r===o.length-1)&&a.trigger([i])}}this.clearTriggerQueues()},i.prototype.next=function(e){this.waypoints.sort(t);var i=n.Adapter.inArray(e,this.waypoints),o=i===this.waypoints.length-1;return o?null:this.waypoints[i+1]},i.prototype.previous=function(e){this.waypoints.sort(t);var i=n.Adapter.inArray(e,this.waypoints);return i?this.waypoints[i-1]:null},i.prototype.queueTrigger=function(t,e){this.triggerQueues[e].push(t)},i.prototype.remove=function(t){var e=n.Adapter.inArray(t,this.waypoints);e>-1&&this.waypoints.splice(e,1)},i.prototype.first=function(){return this.waypoints[0]},i.prototype.last=function(){return this.waypoints[this.waypoints.length-1]},i.findOrCreate=function(t){return o[t.axis][t.name]||new i(t)},n.Group=i}(),function(){"use strict";function t(t){this.$element=e(t)}var e=window.jQuery,i=window.Waypoint;e.each(["innerHeight","innerWidth","off","offset","on","outerHeight","outerWidth","scrollLeft","scrollTop"],function(e,i){t.prototype[i]=function(){var t=Array.prototype.slice.call(arguments);return this.$element[i].apply(this.$element,t)}}),e.each(["extend","inArray","isEmptyObject"],function(i,o){t[o]=e[o]}),i.adapters.push({name:"jquery",Adapter:t}),i.Adapter=t}(),function(){"use strict";function t(t){return function(){var i=[],o=arguments[0];return t.isFunction(arguments[0])&&(o=t.extend({},arguments[1]),o.handler=arguments[0]),this.each(function(){var n=t.extend({},o,{element:this});"string"==typeof n.context&&(n.context=t(this).closest(n.context)[0]),i.push(new e(n))}),i}}var e=window.Waypoint;window.jQuery&&(window.jQuery.fn.waypoint=t(window.jQuery)),window.Zepto&&(window.Zepto.fn.waypoint=t(window.Zepto))}(); \ No newline at end of file diff --git a/work/recovery-ui/recovery/static/scripts/mail/contact.js b/work/recovery-ui/recovery/static/scripts/mail/contact.js new file mode 100644 index 0000000..d34310f --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/mail/contact.js @@ -0,0 +1,65 @@ +$(function () { + + $("#contactForm input, #contactForm textarea").jqBootstrapValidation({ + preventSubmit: true, + submitError: function ($form, event, errors) { + }, + submitSuccess: function ($form, event) { + event.preventDefault(); + var name = $("input#name").val(); + var email = $("input#email").val(); + var subject = $("input#subject").val(); + var message = $("textarea#message").val(); + + $this = $("#sendMessageButton"); + $this.prop("disabled", true); + + $.ajax({ + url: "contact.php", + type: "POST", + data: { + name: name, + email: email, + subject: subject, + message: message + }, + cache: false, + success: function () { + $('#success').html("
"); + $('#success > .alert-success').html(""); + $('#success > .alert-success') + .append("Your message has been sent. "); + $('#success > .alert-success') + .append('
'); + $('#contactForm').trigger("reset"); + }, + error: function () { + $('#success').html("
"); + $('#success > .alert-danger').html(""); + $('#success > .alert-danger').append($("").text("Sorry " + name + ", it seems that our mail server is not responding. Please try again later!")); + $('#success > .alert-danger').append('
'); + $('#contactForm').trigger("reset"); + }, + complete: function () { + setTimeout(function () { + $this.prop("disabled", false); + }, 1000); + } + }); + }, + filter: function () { + return $(this).is(":visible"); + }, + }); + + $("a[data-toggle=\"tab\"]").click(function (e) { + e.preventDefault(); + $(this).tab("show"); + }); +}); + +$('#name').focus(function () { + $('#success').html(''); +}); diff --git a/work/recovery-ui/recovery/static/scripts/mail/contact.php b/work/recovery-ui/recovery/static/scripts/mail/contact.php new file mode 100644 index 0000000..6814136 --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/mail/contact.php @@ -0,0 +1,20 @@ + diff --git a/work/recovery-ui/recovery/static/scripts/mail/jqBootstrapValidation.min.js b/work/recovery-ui/recovery/static/scripts/mail/jqBootstrapValidation.min.js new file mode 100644 index 0000000..0fe1827 --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/mail/jqBootstrapValidation.min.js @@ -0,0 +1 @@ +!function(a){var e=[],t={options:{prependExistingHelpBlock:!1,sniffHtml:!0,preventSubmit:!0,submitError:!1,submitSuccess:!1,semanticallyStrict:!1,autoAdd:{helpBlocks:!0},filter:function(){return!0}},methods:{init:function(o){var r=a.extend(!0,{},t);r.options=a.extend(!0,r.options,o);var l=a.unique(this.map(function(){return a(this).parents("form")[0]}).toArray());return a(l).bind("submit",function(e){var t=a(this),i=0,n=t.find("input,textarea,select").not("[type=submit],[type=image]").filter(r.options.filter);n.trigger("submit.validation").trigger("validationLostFocus.validation"),n.each(function(e,t){var n=a(t).parents(".control-group").first();n.hasClass("warning")&&(n.removeClass("warning").addClass("error"),i++)}),n.trigger("validationLostFocus.validation"),i?(r.options.preventSubmit&&e.preventDefault(),t.addClass("error"),a.isFunction(r.options.submitError)&&r.options.submitError(t,e,n.jqBootstrapValidation("collectErrors",!0))):(t.removeClass("error"),a.isFunction(r.options.submitSuccess)&&r.options.submitSuccess(t,e))}),this.each(function(){var t=a(this),o=t.parents(".control-group").first(),l=o.find(".help-block").first(),s=t.parents("form").first(),d=[];if(!l.length&&r.options.autoAdd&&r.options.autoAdd.helpBlocks&&(l=a('
'),o.find(".controls").append(l),e.push(l[0])),r.options.sniffHtml){var c="";if(void 0!==t.attr("pattern")&&(c="Not in the expected format\x3c!-- data-validation-pattern-message to override --\x3e",t.data("validationPatternMessage")&&(c=t.data("validationPatternMessage")),t.data("validationPatternMessage",c),t.data("validationPatternRegex",t.attr("pattern"))),void 0!==t.attr("max")||void 0!==t.attr("aria-valuemax")){var v=void 0!==t.attr("max")?t.attr("max"):t.attr("aria-valuemax");c="Too high: Maximum of '"+v+"'\x3c!-- data-validation-max-message to override --\x3e",t.data("validationMaxMessage")&&(c=t.data("validationMaxMessage")),t.data("validationMaxMessage",c),t.data("validationMaxMax",v)}if(void 0!==t.attr("min")||void 0!==t.attr("aria-valuemin")){var u=void 0!==t.attr("min")?t.attr("min"):t.attr("aria-valuemin");c="Too low: Minimum of '"+u+"'\x3c!-- data-validation-min-message to override --\x3e",t.data("validationMinMessage")&&(c=t.data("validationMinMessage")),t.data("validationMinMessage",c),t.data("validationMinMin",u)}void 0!==t.attr("maxlength")&&(c="Too long: Maximum of '"+t.attr("maxlength")+"' characters\x3c!-- data-validation-maxlength-message to override --\x3e",t.data("validationMaxlengthMessage")&&(c=t.data("validationMaxlengthMessage")),t.data("validationMaxlengthMessage",c),t.data("validationMaxlengthMaxlength",t.attr("maxlength"))),void 0!==t.attr("minlength")&&(c="Too short: Minimum of '"+t.attr("minlength")+"' characters\x3c!-- data-validation-minlength-message to override --\x3e",t.data("validationMinlengthMessage")&&(c=t.data("validationMinlengthMessage")),t.data("validationMinlengthMessage",c),t.data("validationMinlengthMinlength",t.attr("minlength"))),void 0===t.attr("required")&&void 0===t.attr("aria-required")||(c=r.builtInValidators.required.message,t.data("validationRequiredMessage")&&(c=t.data("validationRequiredMessage")),t.data("validationRequiredMessage",c)),void 0!==t.attr("type")&&"number"===t.attr("type").toLowerCase()&&(c=r.builtInValidators.number.message,t.data("validationNumberMessage")&&(c=t.data("validationNumberMessage")),t.data("validationNumberMessage",c)),void 0!==t.attr("type")&&"email"===t.attr("type").toLowerCase()&&(c="Not a valid email address\x3c!-- data-validator-validemail-message to override --\x3e",t.data("validationValidemailMessage")?c=t.data("validationValidemailMessage"):t.data("validationEmailMessage")&&(c=t.data("validationEmailMessage")),t.data("validationValidemailMessage",c)),void 0!==t.attr("minchecked")&&(c="Not enough options checked; Minimum of '"+t.attr("minchecked")+"' required\x3c!-- data-validation-minchecked-message to override --\x3e",t.data("validationMincheckedMessage")&&(c=t.data("validationMincheckedMessage")),t.data("validationMincheckedMessage",c),t.data("validationMincheckedMinchecked",t.attr("minchecked"))),void 0!==t.attr("maxchecked")&&(c="Too many options checked; Maximum of '"+t.attr("maxchecked")+"' required\x3c!-- data-validation-maxchecked-message to override --\x3e",t.data("validationMaxcheckedMessage")&&(c=t.data("validationMaxcheckedMessage")),t.data("validationMaxcheckedMessage",c),t.data("validationMaxcheckedMaxchecked",t.attr("maxchecked")))}void 0!==t.data("validation")&&(d=t.data("validation").split(",")),a.each(t.data(),function(a,e){var t=a.replace(/([A-Z])/g,",$1").split(",");"validation"===t[0]&&t[1]&&d.push(t[1])});var m=d,g=[];do{a.each(d,function(a,e){d[a]=i(e)}),d=a.unique(d),g=[],a.each(m,function(e,n){if(void 0!==t.data("validation"+n+"Shortcut"))a.each(t.data("validation"+n+"Shortcut").split(","),function(a,e){g.push(e)});else if(r.builtInValidators[n.toLowerCase()]){var o=r.builtInValidators[n.toLowerCase()];"shortcut"===o.type.toLowerCase()&&a.each(o.shortcut.split(","),function(a,e){e=i(e),g.push(e),d.push(e)})}}),m=g}while(m.length>0);var h={};a.each(d,function(e,n){var o=t.data("validation"+n+"Message"),l=void 0!==o,s=!1;if(o=o||"'"+n+"' validation failed \x3c!-- Add attribute 'data-validation-"+n.toLowerCase()+"-message' to input to change this message --\x3e",a.each(r.validatorTypes,function(e,r){void 0===h[e]&&(h[e]=[]),s||void 0===t.data("validation"+n+i(r.name))||(h[e].push(a.extend(!0,{name:i(r.name),message:o},r.init(t,n))),s=!0)}),!s&&r.builtInValidators[n.toLowerCase()]){var d=a.extend(!0,{},r.builtInValidators[n.toLowerCase()]);l&&(d.message=o);var c=d.type.toLowerCase();"shortcut"===c?s=!0:a.each(r.validatorTypes,function(e,o){void 0===h[e]&&(h[e]=[]),s||c!==e.toLowerCase()||(t.data("validation"+n+i(o.name),d[o.name.toLowerCase()]),h[c].push(a.extend(d,o.init(t,n))),s=!0)})}s||a.error("Cannot find validation info for '"+n+"'")}),l.data("original-contents",l.data("original-contents")?l.data("original-contents"):l.html()),l.data("original-role",l.data("original-role")?l.data("original-role"):l.attr("role")),o.data("original-classes",o.data("original-clases")?o.data("original-classes"):o.attr("class")),t.data("original-aria-invalid",t.data("original-aria-invalid")?t.data("original-aria-invalid"):t.attr("aria-invalid")),t.bind("validation.validation",function(e,i){var o=n(t),l=[];return a.each(h,function(e,n){(o||o.length||i&&i.includeEmpty||r.validatorTypes[e].blockSubmit&&i&&i.submitting)&&a.each(n,function(a,i){r.validatorTypes[e].validate(t,o,i)&&l.push(i.message)})}),l}),t.bind("getValidators.validation",function(){return h}),t.bind("submit.validation",function(){return t.triggerHandler("change.validation",{submitting:!0})}),t.bind(["keyup","focus","blur","click","keydown","keypress","change"].join(".validation ")+".validation",function(e,i){var d=n(t),c=[];o.find("input,textarea,select").each(function(e,n){var o=c.length;if(a.each(a(n).triggerHandler("validation.validation",i),function(a,e){c.push(e)}),c.length>o)a(n).attr("aria-invalid","true");else{var r=t.data("original-aria-invalid");a(n).attr("aria-invalid",void 0!==r&&r)}}),s.find("input,select,textarea").not(t).not('[name="'+t.attr("name")+'"]').trigger("validationLostFocus.validation"),(c=a.unique(c.sort())).length?(o.removeClass("success error").addClass("warning"),r.options.semanticallyStrict&&1===c.length?l.html(c[0]+(r.options.prependExistingHelpBlock?l.data("original-contents"):"")):l.html('
  • '+c.join("
  • ")+"
"+(r.options.prependExistingHelpBlock?l.data("original-contents"):""))):(o.removeClass("warning error success"),d.length>0&&o.addClass("success"),l.html(l.data("original-contents"))),"blur"===e.type&&o.removeClass("success")}),t.bind("validationLostFocus.validation",function(){o.removeClass("success")})})},destroy:function(){return this.each(function(){var t=a(this),i=t.parents(".control-group").first(),n=i.find(".help-block").first();t.unbind(".validation"),n.html(n.data("original-contents")),i.attr("class",i.data("original-classes")),t.attr("aria-invalid",t.data("original-aria-invalid")),n.attr("role",t.data("original-role")),e.indexOf(n[0])>-1&&n.remove()})},collectErrors:function(e){var t={};return this.each(function(e,i){var n=a(i),o=n.attr("name"),r=n.triggerHandler("validation.validation",{includeEmpty:!0});t[o]=a.extend(!0,r,t[o])}),a.each(t,function(a,e){0===e.length&&delete t[a]}),t},hasErrors:function(){var e=[];return this.each(function(t,i){e=e.concat(a(i).triggerHandler("getValidators.validation")?a(i).triggerHandler("validation.validation",{submitting:!0}):[])}),e.length>0},override:function(e){t=a.extend(!0,t,e)}},validatorTypes:{callback:{name:"callback",init:function(a,e){return{validatorName:e,callback:a.data("validation"+e+"Callback"),lastValue:a.val(),lastValid:!0,lastFinished:!0}},validate:function(a,e,t){if(t.lastValue===e&&t.lastFinished)return!t.lastValid;if(!0===t.lastFinished){t.lastValue=e,t.lastValid=!0,t.lastFinished=!1;var i=t,n=a;!function(a,e){for(var t=Array.prototype.slice.call(arguments).splice(2),i=a.split("."),n=i.pop(),o=0;o0&&t.negative)},blockSubmit:!0},match:{name:"match",init:function(a,e){var t=a.parents("form").first().find('[name="'+a.data("validation"+e+"Match")+'"]').first();return t.bind("validation.validation",function(){a.trigger("change.validation",{submitting:!0})}),{element:t}},validate:function(a,e,t){return e!==t.element.val()&&!t.negative||e===t.element.val()&&t.negative},blockSubmit:!0},max:{name:"max",init:function(a,e){return{max:a.data("validation"+e+"Max")}},validate:function(a,e,t){return parseFloat(e,10)>parseFloat(t.max,10)&&!t.negative||parseFloat(e,10)<=parseFloat(t.max,10)&&t.negative}},min:{name:"min",init:function(a,e){return{min:a.data("validation"+e+"Min")}},validate:function(a,e,t){return parseFloat(e)=parseFloat(t.min)&&t.negative}},maxlength:{name:"maxlength",init:function(a,e){return{maxlength:a.data("validation"+e+"Maxlength")}},validate:function(a,e,t){return e.length>t.maxlength&&!t.negative||e.length<=t.maxlength&&t.negative}},minlength:{name:"minlength",init:function(a,e){return{minlength:a.data("validation"+e+"Minlength")}},validate:function(a,e,t){return e.length=t.minlength&&t.negative}},maxchecked:{name:"maxchecked",init:function(a,e){var t=a.parents("form").first().find('[name="'+a.attr("name")+'"]');return t.bind("click.validation",function(){a.trigger("change.validation",{includeEmpty:!0})}),{maxchecked:a.data("validation"+e+"Maxchecked"),elements:t}},validate:function(a,e,t){return t.elements.filter(":checked").length>t.maxchecked&&!t.negative||t.elements.filter(":checked").length<=t.maxchecked&&t.negative},blockSubmit:!0},minchecked:{name:"minchecked",init:function(a,e){var t=a.parents("form").first().find('[name="'+a.attr("name")+'"]');return t.bind("click.validation",function(){a.trigger("change.validation",{includeEmpty:!0})}),{minchecked:a.data("validation"+e+"Minchecked"),elements:t}},validate:function(a,e,t){return t.elements.filter(":checked").length=t.minchecked&&t.negative},blockSubmit:!0}},builtInValidators:{email:{name:"Email",type:"shortcut",shortcut:"validemail"},validemail:{name:"Validemail",type:"regex",regex:"[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}",message:"Not a valid email address\x3c!-- data-validator-validemail-message to override --\x3e"},passwordagain:{name:"Passwordagain",type:"match",match:"password",message:"Does not match the given password\x3c!-- data-validator-paswordagain-message to override --\x3e"},positive:{name:"Positive",type:"shortcut",shortcut:"number,positivenumber"},negative:{name:"Negative",type:"shortcut",shortcut:"number,negativenumber"},number:{name:"Number",type:"regex",regex:"([+-]?\\d+(\\.\\d*)?([eE][+-]?[0-9]+)?)?",message:"Must be a number\x3c!-- data-validator-number-message to override --\x3e"},integer:{name:"Integer",type:"regex",regex:"[+-]?\\d+",message:"No decimal places allowed\x3c!-- data-validator-integer-message to override --\x3e"},positivenumber:{name:"Positivenumber",type:"min",min:0,message:"Must be a positive number\x3c!-- data-validator-positivenumber-message to override --\x3e"},negativenumber:{name:"Negativenumber",type:"max",max:0,message:"Must be a negative number\x3c!-- data-validator-negativenumber-message to override --\x3e"},required:{name:"Required",type:"required",message:"This is required\x3c!-- data-validator-required-message to override --\x3e"},checkone:{name:"Checkone",type:"minchecked",minchecked:1,message:"Check at least one option\x3c!-- data-validation-checkone-message to override --\x3e"}}},i=function(a){return a.toLowerCase().replace(/(^|\s)([a-z])/g,function(a,e,t){return e+t.toUpperCase()})},n=function(e){var t=e.val(),i=e.attr("type");return"checkbox"===i&&(t=e.is(":checked")?t:""),"radio"===i&&(t=a('input[name="'+e.attr("name")+'"]:checked').length>0?t:""),t};a.fn.jqBootstrapValidation=function(e){return t.methods[e]?t.methods[e].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof e&&e?(a.error("Method "+e+" does not exist on jQuery.jqBootstrapValidation"),null):t.methods.init.apply(this,arguments)},a.jqBootstrapValidation=function(e){a(":input").not("[type=image],[type=submit]").jqBootstrapValidation.apply(this,arguments)}}(jQuery); \ No newline at end of file diff --git a/work/recovery-ui/recovery/static/scripts/vendor/bootstrap.min.js b/work/recovery-ui/recovery/static/scripts/vendor/bootstrap.min.js new file mode 100644 index 0000000..2f3ced9 --- /dev/null +++ b/work/recovery-ui/recovery/static/scripts/vendor/bootstrap.min.js @@ -0,0 +1,12 @@ +/*! + * Bootstrap v3.3.5 (http://getbootstrap.com) + * Copyright 2011-2016 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +/*! + * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=8de1cf0e0bcf285ac013) + * Config saved to config.json and https://gist.github.com/8de1cf0e0bcf285ac013 + */ +if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(t){"use strict";var e=t.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1==e[0]&&9==e[1]&&e[2]<1||e[0]>2)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3")}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var i=t(this),n=i.data("bs.alert");n||i.data("bs.alert",n=new o(this)),"string"==typeof e&&n[e].call(i)})}var i='[data-dismiss="alert"]',o=function(e){t(e).on("click",i,this.close)};o.VERSION="3.3.6",o.TRANSITION_DURATION=150,o.prototype.close=function(e){function i(){a.detach().trigger("closed.bs.alert").remove()}var n=t(this),s=n.attr("data-target");s||(s=n.attr("href"),s=s&&s.replace(/.*(?=#[^\s]*$)/,""));var a=t(s);e&&e.preventDefault(),a.length||(a=n.closest(".alert")),a.trigger(e=t.Event("close.bs.alert")),e.isDefaultPrevented()||(a.removeClass("in"),t.support.transition&&a.hasClass("fade")?a.one("bsTransitionEnd",i).emulateTransitionEnd(o.TRANSITION_DURATION):i())};var n=t.fn.alert;t.fn.alert=e,t.fn.alert.Constructor=o,t.fn.alert.noConflict=function(){return t.fn.alert=n,this},t(document).on("click.bs.alert.data-api",i,o.prototype.close)}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.button"),s="object"==typeof e&&e;n||o.data("bs.button",n=new i(this,s)),"toggle"==e?n.toggle():e&&n.setState(e)})}var i=function(e,o){this.$element=t(e),this.options=t.extend({},i.DEFAULTS,o),this.isLoading=!1};i.VERSION="3.3.6",i.DEFAULTS={loadingText:"loading..."},i.prototype.setState=function(e){var i="disabled",o=this.$element,n=o.is("input")?"val":"html",s=o.data();e+="Text",null==s.resetText&&o.data("resetText",o[n]()),setTimeout(t.proxy(function(){o[n](null==s[e]?this.options[e]:s[e]),"loadingText"==e?(this.isLoading=!0,o.addClass(i).attr(i,i)):this.isLoading&&(this.isLoading=!1,o.removeClass(i).removeAttr(i))},this),0)},i.prototype.toggle=function(){var t=!0,e=this.$element.closest('[data-toggle="buttons"]');if(e.length){var i=this.$element.find("input");"radio"==i.prop("type")?(i.prop("checked")&&(t=!1),e.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==i.prop("type")&&(i.prop("checked")!==this.$element.hasClass("active")&&(t=!1),this.$element.toggleClass("active")),i.prop("checked",this.$element.hasClass("active")),t&&i.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var o=t.fn.button;t.fn.button=e,t.fn.button.Constructor=i,t.fn.button.noConflict=function(){return t.fn.button=o,this},t(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(i){var o=t(i.target);o.hasClass("btn")||(o=o.closest(".btn")),e.call(o,"toggle"),t(i.target).is('input[type="radio"]')||t(i.target).is('input[type="checkbox"]')||i.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(e){t(e.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(e.type))})}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.carousel"),s=t.extend({},i.DEFAULTS,o.data(),"object"==typeof e&&e),a="string"==typeof e?e:s.slide;n||o.data("bs.carousel",n=new i(this,s)),"number"==typeof e?n.to(e):a?n[a]():s.interval&&n.pause().cycle()})}var i=function(e,i){this.$element=t(e),this.$indicators=this.$element.find(".carousel-indicators"),this.options=i,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",t.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",t.proxy(this.pause,this)).on("mouseleave.bs.carousel",t.proxy(this.cycle,this))};i.VERSION="3.3.6",i.TRANSITION_DURATION=600,i.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},i.prototype.keydown=function(t){if(!/input|textarea/i.test(t.target.tagName)){switch(t.which){case 37:this.prev();break;case 39:this.next();break;default:return}t.preventDefault()}},i.prototype.cycle=function(e){return e||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(t.proxy(this.next,this),this.options.interval)),this},i.prototype.getItemIndex=function(t){return this.$items=t.parent().children(".item"),this.$items.index(t||this.$active)},i.prototype.getItemForDirection=function(t,e){var i=this.getItemIndex(e),o="prev"==t&&0===i||"next"==t&&i==this.$items.length-1;if(o&&!this.options.wrap)return e;var n="prev"==t?-1:1,s=(i+n)%this.$items.length;return this.$items.eq(s)},i.prototype.to=function(t){var e=this,i=this.getItemIndex(this.$active=this.$element.find(".item.active"));return t>this.$items.length-1||0>t?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){e.to(t)}):i==t?this.pause().cycle():this.slide(t>i?"next":"prev",this.$items.eq(t))},i.prototype.pause=function(e){return e||(this.paused=!0),this.$element.find(".next, .prev").length&&t.support.transition&&(this.$element.trigger(t.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},i.prototype.next=function(){return this.sliding?void 0:this.slide("next")},i.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},i.prototype.slide=function(e,o){var n=this.$element.find(".item.active"),s=o||this.getItemForDirection(e,n),a=this.interval,r="next"==e?"left":"right",l=this;if(s.hasClass("active"))return this.sliding=!1;var h=s[0],d=t.Event("slide.bs.carousel",{relatedTarget:h,direction:r});if(this.$element.trigger(d),!d.isDefaultPrevented()){if(this.sliding=!0,a&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var p=t(this.$indicators.children()[this.getItemIndex(s)]);p&&p.addClass("active")}var c=t.Event("slid.bs.carousel",{relatedTarget:h,direction:r});return t.support.transition&&this.$element.hasClass("slide")?(s.addClass(e),s[0].offsetWidth,n.addClass(r),s.addClass(r),n.one("bsTransitionEnd",function(){s.removeClass([e,r].join(" ")).addClass("active"),n.removeClass(["active",r].join(" ")),l.sliding=!1,setTimeout(function(){l.$element.trigger(c)},0)}).emulateTransitionEnd(i.TRANSITION_DURATION)):(n.removeClass("active"),s.addClass("active"),this.sliding=!1,this.$element.trigger(c)),a&&this.cycle(),this}};var o=t.fn.carousel;t.fn.carousel=e,t.fn.carousel.Constructor=i,t.fn.carousel.noConflict=function(){return t.fn.carousel=o,this};var n=function(i){var o,n=t(this),s=t(n.attr("data-target")||(o=n.attr("href"))&&o.replace(/.*(?=#[^\s]+$)/,""));if(s.hasClass("carousel")){var a=t.extend({},s.data(),n.data()),r=n.attr("data-slide-to");r&&(a.interval=!1),e.call(s,a),r&&s.data("bs.carousel").to(r),i.preventDefault()}};t(document).on("click.bs.carousel.data-api","[data-slide]",n).on("click.bs.carousel.data-api","[data-slide-to]",n),t(window).on("load",function(){t('[data-ride="carousel"]').each(function(){var i=t(this);e.call(i,i.data())})})}(jQuery),+function(t){"use strict";function e(e){var i=e.attr("data-target");i||(i=e.attr("href"),i=i&&/#[A-Za-z]/.test(i)&&i.replace(/.*(?=#[^\s]*$)/,""));var o=i&&t(i);return o&&o.length?o:e.parent()}function i(i){i&&3===i.which||(t(n).remove(),t(s).each(function(){var o=t(this),n=e(o),s={relatedTarget:this};n.hasClass("open")&&(i&&"click"==i.type&&/input|textarea/i.test(i.target.tagName)&&t.contains(n[0],i.target)||(n.trigger(i=t.Event("hide.bs.dropdown",s)),i.isDefaultPrevented()||(o.attr("aria-expanded","false"),n.removeClass("open").trigger(t.Event("hidden.bs.dropdown",s)))))}))}function o(e){return this.each(function(){var i=t(this),o=i.data("bs.dropdown");o||i.data("bs.dropdown",o=new a(this)),"string"==typeof e&&o[e].call(i)})}var n=".dropdown-backdrop",s='[data-toggle="dropdown"]',a=function(e){t(e).on("click.bs.dropdown",this.toggle)};a.VERSION="3.3.6",a.prototype.toggle=function(o){var n=t(this);if(!n.is(".disabled, :disabled")){var s=e(n),a=s.hasClass("open");if(i(),!a){"ontouchstart"in document.documentElement&&!s.closest(".navbar-nav").length&&t(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(t(this)).on("click",i);var r={relatedTarget:this};if(s.trigger(o=t.Event("show.bs.dropdown",r)),o.isDefaultPrevented())return;n.trigger("focus").attr("aria-expanded","true"),s.toggleClass("open").trigger(t.Event("shown.bs.dropdown",r))}return!1}},a.prototype.keydown=function(i){if(/(38|40|27|32)/.test(i.which)&&!/input|textarea/i.test(i.target.tagName)){var o=t(this);if(i.preventDefault(),i.stopPropagation(),!o.is(".disabled, :disabled")){var n=e(o),a=n.hasClass("open");if(!a&&27!=i.which||a&&27==i.which)return 27==i.which&&n.find(s).trigger("focus"),o.trigger("click");var r=" li:not(.disabled):visible a",l=n.find(".dropdown-menu"+r);if(l.length){var h=l.index(i.target);38==i.which&&h>0&&h--,40==i.which&&hdocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&t?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!t?this.scrollbarWidth:""})},i.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},i.prototype.checkScrollbar=function(){var t=window.innerWidth;if(!t){var e=document.documentElement.getBoundingClientRect();t=e.right-Math.abs(e.left)}this.bodyIsOverflowing=document.body.clientWidth
',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},i.prototype.init=function(e,i,o){if(this.enabled=!0,this.type=e,this.$element=t(i),this.options=this.getOptions(o),this.$viewport=this.options.viewport&&t(t.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var n=this.options.trigger.split(" "),s=n.length;s--;){var a=n[s];if("click"==a)this.$element.on("click."+this.type,this.options.selector,t.proxy(this.toggle,this));else if("manual"!=a){var r="hover"==a?"mouseenter":"focusin",l="hover"==a?"mouseleave":"focusout";this.$element.on(r+"."+this.type,this.options.selector,t.proxy(this.enter,this)),this.$element.on(l+"."+this.type,this.options.selector,t.proxy(this.leave,this))}}this.options.selector?this._options=t.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},i.prototype.getDefaults=function(){return i.DEFAULTS},i.prototype.getOptions=function(e){return e=t.extend({},this.getDefaults(),this.$element.data(),e),e.delay&&"number"==typeof e.delay&&(e.delay={show:e.delay,hide:e.delay}),e},i.prototype.getDelegateOptions=function(){var e={},i=this.getDefaults();return this._options&&t.each(this._options,function(t,o){i[t]!=o&&(e[t]=o)}),e},i.prototype.enter=function(e){var i=e instanceof this.constructor?e:t(e.currentTarget).data("bs."+this.type);return i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i)),e instanceof t.Event&&(i.inState["focusin"==e.type?"focus":"hover"]=!0),i.tip().hasClass("in")||"in"==i.hoverState?void(i.hoverState="in"):(clearTimeout(i.timeout),i.hoverState="in",i.options.delay&&i.options.delay.show?void(i.timeout=setTimeout(function(){"in"==i.hoverState&&i.show()},i.options.delay.show)):i.show())},i.prototype.isInStateTrue=function(){for(var t in this.inState)if(this.inState[t])return!0;return!1},i.prototype.leave=function(e){var i=e instanceof this.constructor?e:t(e.currentTarget).data("bs."+this.type);return i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i)),e instanceof t.Event&&(i.inState["focusout"==e.type?"focus":"hover"]=!1),i.isInStateTrue()?void 0:(clearTimeout(i.timeout),i.hoverState="out",i.options.delay&&i.options.delay.hide?void(i.timeout=setTimeout(function(){"out"==i.hoverState&&i.hide()},i.options.delay.hide)):i.hide())},i.prototype.show=function(){var e=t.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(e);var o=t.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(e.isDefaultPrevented()||!o)return;var n=this,s=this.tip(),a=this.getUID(this.type);this.setContent(),s.attr("id",a),this.$element.attr("aria-describedby",a),this.options.animation&&s.addClass("fade");var r="function"==typeof this.options.placement?this.options.placement.call(this,s[0],this.$element[0]):this.options.placement,l=/\s?auto?\s?/i,h=l.test(r);h&&(r=r.replace(l,"")||"top"),s.detach().css({top:0,left:0,display:"block"}).addClass(r).data("bs."+this.type,this),this.options.container?s.appendTo(this.options.container):s.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var d=this.getPosition(),p=s[0].offsetWidth,c=s[0].offsetHeight;if(h){var f=r,u=this.getPosition(this.$viewport);r="bottom"==r&&d.bottom+c>u.bottom?"top":"top"==r&&d.top-cu.width?"left":"left"==r&&d.left-pa.top+a.height&&(n.top=a.top+a.height-l)}else{var h=e.left-s,d=e.left+s+i;ha.right&&(n.left=a.left+a.width-d)}return n},i.prototype.getTitle=function(){var t,e=this.$element,i=this.options;return t=e.attr("data-original-title")||("function"==typeof i.title?i.title.call(e[0]):i.title)},i.prototype.getUID=function(t){do t+=~~(1e6*Math.random());while(document.getElementById(t));return t},i.prototype.tip=function(){if(!this.$tip&&(this.$tip=t(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},i.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},i.prototype.enable=function(){this.enabled=!0},i.prototype.disable=function(){this.enabled=!1},i.prototype.toggleEnabled=function(){this.enabled=!this.enabled},i.prototype.toggle=function(e){var i=this;e&&(i=t(e.currentTarget).data("bs."+this.type),i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i))),e?(i.inState.click=!i.inState.click,i.isInStateTrue()?i.enter(i):i.leave(i)):i.tip().hasClass("in")?i.leave(i):i.enter(i)},i.prototype.destroy=function(){var t=this;clearTimeout(this.timeout),this.hide(function(){t.$element.off("."+t.type).removeData("bs."+t.type),t.$tip&&t.$tip.detach(),t.$tip=null,t.$arrow=null,t.$viewport=null})};var o=t.fn.tooltip;t.fn.tooltip=e,t.fn.tooltip.Constructor=i,t.fn.tooltip.noConflict=function(){return t.fn.tooltip=o,this}}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.popover"),s="object"==typeof e&&e;(n||!/destroy|hide/.test(e))&&(n||o.data("bs.popover",n=new i(this,s)),"string"==typeof e&&n[e]())})}var i=function(t,e){this.init("popover",t,e)};if(!t.fn.tooltip)throw new Error("Popover requires tooltip.js");i.VERSION="3.3.6",i.DEFAULTS=t.extend({},t.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),i.prototype=t.extend({},t.fn.tooltip.Constructor.prototype),i.prototype.constructor=i,i.prototype.getDefaults=function(){return i.DEFAULTS},i.prototype.setContent=function(){var t=this.tip(),e=this.getTitle(),i=this.getContent();t.find(".popover-title")[this.options.html?"html":"text"](e),t.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof i?"html":"append":"text"](i),t.removeClass("fade top bottom left right in"),t.find(".popover-title").html()||t.find(".popover-title").hide()},i.prototype.hasContent=function(){return this.getTitle()||this.getContent()},i.prototype.getContent=function(){var t=this.$element,e=this.options;return t.attr("data-content")||("function"==typeof e.content?e.content.call(t[0]):e.content)},i.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var o=t.fn.popover;t.fn.popover=e,t.fn.popover.Constructor=i,t.fn.popover.noConflict=function(){return t.fn.popover=o,this}}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.tab");n||o.data("bs.tab",n=new i(this)),"string"==typeof e&&n[e]()})}var i=function(e){this.element=t(e)};i.VERSION="3.3.6",i.TRANSITION_DURATION=150,i.prototype.show=function(){var e=this.element,i=e.closest("ul:not(.dropdown-menu)"),o=e.data("target");if(o||(o=e.attr("href"),o=o&&o.replace(/.*(?=#[^\s]*$)/,"")),!e.parent("li").hasClass("active")){var n=i.find(".active:last a"),s=t.Event("hide.bs.tab",{relatedTarget:e[0]}),a=t.Event("show.bs.tab",{relatedTarget:n[0]});if(n.trigger(s),e.trigger(a),!a.isDefaultPrevented()&&!s.isDefaultPrevented()){var r=t(o);this.activate(e.closest("li"),i),this.activate(r,r.parent(),function(){n.trigger({type:"hidden.bs.tab",relatedTarget:e[0]}),e.trigger({type:"shown.bs.tab",relatedTarget:n[0]})})}}},i.prototype.activate=function(e,o,n){function s(){a.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),e.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),r?(e[0].offsetWidth,e.addClass("in")):e.removeClass("fade"),e.parent(".dropdown-menu").length&&e.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),n&&n()}var a=o.find("> .active"),r=n&&t.support.transition&&(a.length&&a.hasClass("fade")||!!o.find("> .fade").length);a.length&&r?a.one("bsTransitionEnd",s).emulateTransitionEnd(i.TRANSITION_DURATION):s(),a.removeClass("in")};var o=t.fn.tab;t.fn.tab=e,t.fn.tab.Constructor=i,t.fn.tab.noConflict=function(){return t.fn.tab=o,this};var n=function(i){i.preventDefault(),e.call(t(this),"show")};t(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',n).on("click.bs.tab.data-api",'[data-toggle="pill"]',n)}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.affix"),s="object"==typeof e&&e;n||o.data("bs.affix",n=new i(this,s)),"string"==typeof e&&n[e]()})}var i=function(e,o){this.options=t.extend({},i.DEFAULTS,o),this.$target=t(this.options.target).on("scroll.bs.affix.data-api",t.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",t.proxy(this.checkPositionWithEventLoop,this)),this.$element=t(e),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};i.VERSION="3.3.6",i.RESET="affix affix-top affix-bottom",i.DEFAULTS={offset:0,target:window},i.prototype.getState=function(t,e,i,o){var n=this.$target.scrollTop(),s=this.$element.offset(),a=this.$target.height();if(null!=i&&"top"==this.affixed)return i>n?"top":!1;if("bottom"==this.affixed)return null!=i?n+this.unpin<=s.top?!1:"bottom":t-o>=n+a?!1:"bottom";var r=null==this.affixed,l=r?n:s.top,h=r?a:e;return null!=i&&i>=n?"top":null!=o&&l+h>=t-o?"bottom":!1},i.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(i.RESET).addClass("affix");var t=this.$target.scrollTop(),e=this.$element.offset();return this.pinnedOffset=e.top-t},i.prototype.checkPositionWithEventLoop=function(){setTimeout(t.proxy(this.checkPosition,this),1)},i.prototype.checkPosition=function(){if(this.$element.is(":visible")){var e=this.$element.height(),o=this.options.offset,n=o.top,s=o.bottom,a=Math.max(t(document).height(),t(document.body).height());"object"!=typeof o&&(s=n=o),"function"==typeof n&&(n=o.top(this.$element)),"function"==typeof s&&(s=o.bottom(this.$element));var r=this.getState(a,e,n,s);if(this.affixed!=r){null!=this.unpin&&this.$element.css("top","");var l="affix"+(r?"-"+r:""),h=t.Event(l+".bs.affix");if(this.$element.trigger(h),h.isDefaultPrevented())return;this.affixed=r,this.unpin="bottom"==r?this.getPinnedOffset():null,this.$element.removeClass(i.RESET).addClass(l).trigger(l.replace("affix","affixed")+".bs.affix")}"bottom"==r&&this.$element.offset({top:a-e-s})}};var o=t.fn.affix;t.fn.affix=e,t.fn.affix.Constructor=i,t.fn.affix.noConflict=function(){return t.fn.affix=o,this},t(window).on("load",function(){t('[data-spy="affix"]').each(function(){var i=t(this),o=i.data();o.offset=o.offset||{},null!=o.offsetBottom&&(o.offset.bottom=o.offsetBottom),null!=o.offsetTop&&(o.offset.top=o.offsetTop),e.call(i,o)})})}(jQuery),+function(t){"use strict";function e(e){var i,o=e.attr("data-target")||(i=e.attr("href"))&&i.replace(/.*(?=#[^\s]+$)/,"");return t(o)}function i(e){return this.each(function(){var i=t(this),n=i.data("bs.collapse"),s=t.extend({},o.DEFAULTS,i.data(),"object"==typeof e&&e);!n&&s.toggle&&/show|hide/.test(e)&&(s.toggle=!1),n||i.data("bs.collapse",n=new o(this,s)),"string"==typeof e&&n[e]()})}var o=function(e,i){this.$element=t(e),this.options=t.extend({},o.DEFAULTS,i),this.$trigger=t('[data-toggle="collapse"][href="#'+e.id+'"],[data-toggle="collapse"][data-target="#'+e.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};o.VERSION="3.3.6",o.TRANSITION_DURATION=350,o.DEFAULTS={toggle:!0},o.prototype.dimension=function(){var t=this.$element.hasClass("width");return t?"width":"height"},o.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var e,n=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(n&&n.length&&(e=n.data("bs.collapse"),e&&e.transitioning))){var s=t.Event("show.bs.collapse");if(this.$element.trigger(s),!s.isDefaultPrevented()){n&&n.length&&(i.call(n,"hide"),e||n.data("bs.collapse",null));var a=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[a](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var r=function(){this.$element.removeClass("collapsing").addClass("collapse in")[a](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!t.support.transition)return r.call(this);var l=t.camelCase(["scroll",a].join("-"));this.$element.one("bsTransitionEnd",t.proxy(r,this)).emulateTransitionEnd(o.TRANSITION_DURATION)[a](this.$element[0][l]); +}}}},o.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var e=t.Event("hide.bs.collapse");if(this.$element.trigger(e),!e.isDefaultPrevented()){var i=this.dimension();this.$element[i](this.$element[i]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var n=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return t.support.transition?void this.$element[i](0).one("bsTransitionEnd",t.proxy(n,this)).emulateTransitionEnd(o.TRANSITION_DURATION):n.call(this)}}},o.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},o.prototype.getParent=function(){return t(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(t.proxy(function(i,o){var n=t(o);this.addAriaAndCollapsedClass(e(n),n)},this)).end()},o.prototype.addAriaAndCollapsedClass=function(t,e){var i=t.hasClass("in");t.attr("aria-expanded",i),e.toggleClass("collapsed",!i).attr("aria-expanded",i)};var n=t.fn.collapse;t.fn.collapse=i,t.fn.collapse.Constructor=o,t.fn.collapse.noConflict=function(){return t.fn.collapse=n,this},t(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(o){var n=t(this);n.attr("data-target")||o.preventDefault();var s=e(n),a=s.data("bs.collapse"),r=a?"toggle":n.data();i.call(s,r)})}(jQuery),+function(t){"use strict";function e(i,o){this.$body=t(document.body),this.$scrollElement=t(t(i).is(document.body)?window:i),this.options=t.extend({},e.DEFAULTS,o),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",t.proxy(this.process,this)),this.refresh(),this.process()}function i(i){return this.each(function(){var o=t(this),n=o.data("bs.scrollspy"),s="object"==typeof i&&i;n||o.data("bs.scrollspy",n=new e(this,s)),"string"==typeof i&&n[i]()})}e.VERSION="3.3.6",e.DEFAULTS={offset:10},e.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},e.prototype.refresh=function(){var e=this,i="offset",o=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),t.isWindow(this.$scrollElement[0])||(i="position",o=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var e=t(this),n=e.data("target")||e.attr("href"),s=/^#./.test(n)&&t(n);return s&&s.length&&s.is(":visible")&&[[s[i]().top+o,n]]||null}).sort(function(t,e){return t[0]-e[0]}).each(function(){e.offsets.push(this[0]),e.targets.push(this[1])})},e.prototype.process=function(){var t,e=this.$scrollElement.scrollTop()+this.options.offset,i=this.getScrollHeight(),o=this.options.offset+i-this.$scrollElement.height(),n=this.offsets,s=this.targets,a=this.activeTarget;if(this.scrollHeight!=i&&this.refresh(),e>=o)return a!=(t=s[s.length-1])&&this.activate(t);if(a&&e=n[t]&&(void 0===n[t+1]||e`s. The `::before` pseudo-element generates an element + // *within* the .breadcrumb-item and thereby inherits the `text-decoration`. + // + // To trick IE into suppressing the underline, we give the pseudo-element an + // underline and then immediately remove it. + + .breadcrumb-item:hover::before { + text-decoration: underline; + } + // stylelint-disable-next-line no-duplicate-selectors + + .breadcrumb-item:hover::before { + text-decoration: none; + } + + &.active { + color: $breadcrumb-active-color; + } +} diff --git a/work/recovery-ui/recovery/static/scss/bootstrap/scss/_button-group.scss b/work/recovery-ui/recovery/static/scss/bootstrap/scss/_button-group.scss new file mode 100644 index 0000000..da02d79 --- /dev/null +++ b/work/recovery-ui/recovery/static/scss/bootstrap/scss/_button-group.scss @@ -0,0 +1,163 @@ +// stylelint-disable selector-no-qualifying-type + +// Make the div behave like a button +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-flex; + vertical-align: middle; // match .btn alignment given font-size hack above + + > .btn { + position: relative; + flex: 1 1 auto; + + // Bring the hover, focused, and "active" buttons to the front to overlay + // the borders properly + @include hover() { + z-index: 1; + } + &:focus, + &:active, + &.active { + z-index: 1; + } + } +} + +// Optional: Group multiple button groups together for a toolbar +.btn-toolbar { + display: flex; + flex-wrap: wrap; + justify-content: flex-start; + + .input-group { + width: auto; + } +} + +.btn-group { + // Prevent double borders when buttons are next to each other + > .btn:not(:first-child), + > .btn-group:not(:first-child) { + margin-left: -$btn-border-width; + } + + // Reset rounded corners + > .btn:not(:last-child):not(.dropdown-toggle), + > .btn-group:not(:last-child) > .btn { + @include border-right-radius(0); + } + + > .btn:not(:first-child), + > .btn-group:not(:first-child) > .btn { + @include border-left-radius(0); + } +} + +// Sizing +// +// Remix the default button sizing classes into new ones for easier manipulation. + +.btn-group-sm > .btn { @extend .btn-sm; } +.btn-group-lg > .btn { @extend .btn-lg; } + + +// +// Split button dropdowns +// + +.dropdown-toggle-split { + padding-right: $btn-padding-x * .75; + padding-left: $btn-padding-x * .75; + + &::after, + .dropup &::after, + .dropright &::after { + margin-left: 0; + } + + .dropleft &::before { + margin-right: 0; + } +} + +.btn-sm + .dropdown-toggle-split { + padding-right: $btn-padding-x-sm * .75; + padding-left: $btn-padding-x-sm * .75; +} + +.btn-lg + .dropdown-toggle-split { + padding-right: $btn-padding-x-lg * .75; + padding-left: $btn-padding-x-lg * .75; +} + + +// The clickable button for toggling the menu +// Set the same inset shadow as the :active state +.btn-group.show .dropdown-toggle { + @include box-shadow($btn-active-box-shadow); + + // Show no shadow for `.btn-link` since it has no other button styles. + &.btn-link { + @include box-shadow(none); + } +} + + +// +// Vertical button groups +// + +.btn-group-vertical { + flex-direction: column; + align-items: flex-start; + justify-content: center; + + > .btn, + > .btn-group { + width: 100%; + } + + > .btn:not(:first-child), + > .btn-group:not(:first-child) { + margin-top: -$btn-border-width; + } + + // Reset rounded corners + > .btn:not(:last-child):not(.dropdown-toggle), + > .btn-group:not(:last-child) > .btn { + @include border-bottom-radius(0); + } + + > .btn:not(:first-child), + > .btn-group:not(:first-child) > .btn { + @include border-top-radius(0); + } +} + + +// Checkbox and radio options +// +// In order to support the browser's form validation feedback, powered by the +// `required` attribute, we have to "hide" the inputs via `clip`. We cannot use +// `display: none;` or `visibility: hidden;` as that also hides the popover. +// Simply visually hiding the inputs via `opacity` would leave them clickable in +// certain cases which is prevented by using `clip` and `pointer-events`. +// This way, we ensure a DOM element is visible to position the popover from. +// +// See https://github.com/twbs/bootstrap/pull/12794 and +// https://github.com/twbs/bootstrap/pull/14559 for more information. + +.btn-group-toggle { + > .btn, + > .btn-group > .btn { + margin-bottom: 0; // Override default `